/* ============================================================
   BASE RESET & GLOBAL
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f4f6fa;
    color: #1a1a2e;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   HEADER (shared)
   ============================================================ */
.header {
    background: #0b0e1a;
    color: #fff;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid #f0b90b;
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo a {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo a span {
    color: #f0b90b;
}
.logo i {
    color: #f0b90b;
    font-size: 28px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    flex-wrap: wrap;
}
.nav-menu li a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #d0d4e0;
    border-radius: 6px;
    transition: all 0.25s ease;
    position: relative;
}
.nav-menu li a:hover,
.nav-menu li a.active {
    color: #fff;
    background: rgba(240, 185, 11, 0.15);
}
.nav-menu li a.active {
    color: #f0b90b;
}

.btn-nav-cta {
    background: #f0b90b;
    color: #0b0e1a !important;
    font-weight: 700 !important;
    padding: 8px 22px !important;
    border-radius: 30px !important;
    transition: all 0.25s ease;
}
.btn-nav-cta:hover {
    background: #d4a308 !important;
    transform: scale(1.04);
    color: #0b0e1a !important;
}

/* ============================================================
   HERO (home only)
   ============================================================ */
.hero {
    padding: 40px 0 30px;
}
.hero-banner {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    background: #fff;
}
.hero-banner img,
.hero-banner iframe {
    width: 100%;
    display: block;
}

/* ============================================================
   MAIN LAYOUT GRID (shared)
   ============================================================ */
.main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    padding: 30px 0 50px;
}

/* ============================================================
   CONTENT AREA (shared)
   ============================================================ */
.content-area h1 {
    font-size: 34px;
    font-weight: 800;
    color: #0b0e1a;
    margin-bottom: 16px;
    line-height: 1.2;
}
.content-area h1 span {
    color: #f0b90b;
}
.content-area .lead {
    font-size: 18px;
    color: #3d405b;
    margin-bottom: 28px;
}

/* ============================================================
   CONTENT CARD (shared)
   ============================================================ */
.content-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 30px;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef0f5;
    transition: box-shadow 0.2s;
}
.content-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
}
.content-card h2 {
    font-size: 22px;
    font-weight: 700;
    color: #0b0e1a;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.content-card h2 i {
    color: #f0b90b;
    font-size: 26px;
}
.content-card p {
    color: #3d405b;
    margin-bottom: 12px;
    font-size: 15px;
}
.content-card ul {
    list-style: none;
    padding: 0;
}
.content-card ul li {
    padding: 6px 0 6px 28px;
    position: relative;
    color: #3d405b;
    font-size: 15px;
}
.content-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f0b90b;
    font-weight: 700;
    font-size: 18px;
}

.badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}
.badge-group .badge {
    background: #f0f2f8;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #0b0e1a;
}

/* ============================================================
   SIDEBAR (shared)
   ============================================================ */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.sidebar-sticky {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-ad {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef0f5;
    transition: transform 0.2s, box-shadow 0.2s;
}
.sidebar-ad:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.10);
}
.sidebar-ad img,
.sidebar-ad iframe {
    width: 100%;
    display: block;
}
.sidebar-ad .ad-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8e92a8;
    padding: 8px 16px 4px;
    background: #f8f9fc;
}

.sidebar-promo {
    background: linear-gradient(145deg, #0b0e1a, #1a1f35);
    color: #fff;
    border-radius: 16px;
    padding: 24px 22px;
    text-align: center;
    border: 1px solid #2a2f4a;
}
.sidebar-promo h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.sidebar-promo h3 span {
    color: #f0b90b;
}
.sidebar-promo p {
    color: #b0b8d0;
    font-size: 14px;
    margin-bottom: 18px;
}
.sidebar-promo .btn-promo {
    display: inline-block;
    background: #f0b90b;
    color: #0b0e1a;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.25s;
}
.sidebar-promo .btn-promo:hover {
    background: #d4a308;
    transform: scale(1.04);
}

/* ============================================================
   FOOTER (shared)
   ============================================================ */
.footer {
    background: #0b0e1a;
    color: #b0b8d0;
    padding: 50px 0 20px;
    margin-top: 20px;
    border-top: 3px solid #f0b90b;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #1e2340;
}
.footer-brand h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}
.footer-brand h3 span {
    color: #f0b90b;
}
.footer-brand p {
    font-size: 14px;
    max-width: 300px;
    line-height: 1.7;
}
.footer-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    font-size: 14px;
    color: #b0b8d0;
    transition: color 0.2s;
}
.footer-col ul li a:hover {
    color: #f0b90b;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a1f35;
    color: #b0b8d0;
    font-size: 18px;
    transition: all 0.25s;
}
.footer-social a:hover {
    background: #f0b90b;
    color: #0b0e1a;
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #6a7088;
}
.footer-bottom a {
    color: #f0b90b;
}

/* ============================================================
   RESPONSIVE (shared)
   ============================================================ */
@media (max-width: 1024px) {
    .main-grid {
        grid-template-columns: 1fr;
    }
    .sidebar-sticky {
        position: static;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 0 8px;
        gap: 2px;
    }
    .nav-menu.open {
        display: flex;
    }
    .nav-menu li a {
        width: 100%;
        padding: 10px 0;
    }
    .btn-nav-cta {
        text-align: center;
    }
    .hero {
        padding: 20px 0;
    }
    .content-area h1 {
        font-size: 26px;
    }
    .content-card {
        padding: 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-brand p {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .logo a {
        font-size: 20px;
    }
    .content-area h1 {
        font-size: 22px;
    }
    .content-card h2 {
        font-size: 19px;
    }
    .sidebar-promo {
        padding: 18px 16px;
    }
}

/* ============================================================
   PAGE-SPECIFIC STYLES
   ============================================================ */

/* ---------- ACCOUNT ---------- */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 8px;
    font-size: 14px;
}
.comparison-table th {
    background: #f0f2f8;
    padding: 14px 16px;
    text-align: left;
    font-weight: 700;
    color: #0b0e1a;
    border-bottom: 2px solid #eef0f5;
}
.comparison-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #eef0f5;
    color: #3d405b;
}
.comparison-table tr:last-child td {
    border-bottom: none;
}
.comparison-table .highlight {
    font-weight: 700;
    color: #0b0e1a;
}
@media (max-width: 768px) {
    .comparison-table {
        font-size: 12px;
    }
    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
    }
}

/* ---------- ANALYSIS ITEMS ---------- */
.chart-placeholder {
    background: #f0f2f8;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    margin: 16px 0 8px;
    border: 2px dashed #cdd2e0;
    color: #3d405b;
}
.chart-placeholder i {
    font-size: 48px;
    color: #f0b90b;
    margin-bottom: 12px;
    display: block;
}
.chart-placeholder small {
    display: block;
    margin-top: 6px;
    color: #6a7088;
}

.sentiment-bar-wrap {
    margin: 16px 0;
}
.sentiment-bar-wrap .sentiment-label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    color: #3d405b;
    margin-bottom: 4px;
}
.sentiment-bar {
    height: 10px;
    border-radius: 10px;
    background: #eef0f5;
    overflow: hidden;
    display: flex;
}
.sentiment-bar .bullish {
    background: #22c55e;
    height: 100%;
    border-radius: 10px 0 0 10px;
}
.sentiment-bar .bearish {
    background: #ef4444;
    height: 100%;
    border-radius: 0 10px 10px 0;
}

.levels-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    font-size: 14px;
}
.levels-table th,
.levels-table td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid #eef0f5;
}
.levels-table th {
    background: #f8f9fc;
    font-weight: 700;
    color: #0b0e1a;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.levels-table .support {
    color: #22c55e;
    font-weight: 700;
}
.levels-table .resistance {
    color: #ef4444;
    font-weight: 700;
}
.levels-table .current-price {
    font-weight: 800;
    color: #0b0e1a;
}
@media (max-width: 768px) {
    .levels-table {
        font-size: 12px;
    }
    .levels-table th,
    .levels-table td {
        padding: 8px 6px;
    }
}

.indicator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 8px;
}
.indicator-item {
    background: #f8f9fc;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    border: 1px solid #eef0f5;
}
.indicator-item .name {
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    color: #3d405b;
}
.indicator-item .value {
    font-weight: 800;
    font-size: 16px;
    color: #0b0e1a;
}
.indicator-item .signal {
    font-size: 12px;
    font-weight: 600;
    margin-top: 2px;
}
.indicator-item .signal.bullish {
    color: #22c55e;
}
.indicator-item .signal.bearish {
    color: #ef4444;
}
.indicator-item .signal.neutral {
    color: #f59e0b;
}
@media (max-width: 768px) {
    .indicator-grid {
        grid-template-columns: 1fr;
    }
}

.setup-card {
    background: #f8f9fc;
    border-radius: 12px;
    padding: 20px 22px;
    margin-top: 16px;
    border-left: 4px solid #f0b90b;
    transition: 0.2s;
}
.setup-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transform: translateX(2px);
}
.setup-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0b0e1a;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.setup-card h4 i {
    color: #f0b90b;
}
.setup-card p {
    font-size: 14px;
    color: #3d405b;
    margin-bottom: 4px;
}
.setup-card .setup-detail {
    display: inline-block;
    background: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #0b0e1a;
    margin-right: 8px;
    margin-top: 4px;
    border: 1px solid #eef0f5;
}

.badge.badge-bull {
    background: #d4edda;
    color: #166534;
}
.badge.badge-bear {
    background: #fde8e8;
    color: #991b1b;
}
.badge.badge-neutral {
    background: #fef3cd;
    color: #854d0e;
}

/* ---------- BLOG GRID ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef0f5;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}
.blog-card .card-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
.blog-card .card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card .card-date {
    font-size: 12px;
    color: #6a7088;
    margin-bottom: 8px;
}
.blog-card .card-date i {
    margin-right: 4px;
}
.blog-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0b0e1a;
    margin-bottom: 10px;
    line-height: 1.3;
}
.blog-card p {
    font-size: 14px;
    color: #3d405b;
    margin-bottom: 16px;
    flex: 1;
}
.blog-card .read-more {
    display: inline-block;
    font-weight: 600;
    color: #f0b90b;
    font-size: 14px;
    transition: 0.2s;
    align-self: flex-start;
}
.blog-card .read-more:hover {
    color: #d4a308;
    text-decoration: underline;
}

.top-banner {
    padding: 8px 0 4px;
    background: #f4f6fa;
}
.top-banner img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}
.mid-banner {
    margin-bottom: 24px;
}
.mid-banner img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- CONTACT ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 16px 0 8px;
}
.contact-method {
    text-align: center;
    padding: 24px 16px;
    background: #f8f9fc;
    border-radius: 12px;
    transition: 0.2s;
}
.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}
.contact-method i {
    font-size: 30px;
    color: #f0b90b;
    margin-bottom: 12px;
}
.contact-method h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0b0e1a;
    margin-bottom: 6px;
}
.contact-method p {
    font-size: 14px;
    color: #3d405b;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 12px;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
    color: #0b0e1a;
}
.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d0d4e0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: border 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f0b90b;
    box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.15);
}
.btn-submit {
    background: #f0b90b;
    color: #0b0e1a;
    font-weight: 700;
    padding: 14px 40px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.25s;
    align-self: flex-start;
}
.btn-submit:hover {
    background: #d4a308;
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- DAILY MARKET / WEEKLY (shared date/week badges) ---------- */
.date-badge,
.week-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0b0e1a;
    color: #f0b90b;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}
.date-badge i,
.week-badge i {
    font-size: 16px;
}

.tradingview-widget-container {
    width: 100%;
    overflow: hidden;
}

/* ---------- ECONOMIC ---------- */
.live-clock {
    background: linear-gradient(145deg, #0b0e1a, #1a1f35);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    color: #fff;
}
.live-clock .current-time {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.live-clock .current-date {
    font-size: 16px;
    color: #b0b8d0;
}
.live-clock .next-event {
    background: rgba(240, 185, 11, 0.1);
    border: 1px solid #f0b90b;
    border-radius: 12px;
    padding: 12px 20px;
}
.live-clock .next-event .label {
    font-size: 12px;
    text-transform: uppercase;
    color: #f0b90b;
    font-weight: 600;
    letter-spacing: 1px;
}
.live-clock .next-event .event-name {
    font-weight: 700;
    font-size: 16px;
    margin: 4px 0;
}
.live-clock .next-event .event-time {
    font-size: 14px;
    color: #b0b8d0;
}

.calendar-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin-top: 16px;
}
.calendar-table thead th {
    background: #f0f2f8;
    padding: 14px 16px;
    text-align: left;
    font-weight: 700;
    color: #0b0e1a;
    border-bottom: 2px solid #eef0f5;
}
.calendar-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid #eef0f5;
    vertical-align: middle;
}
.calendar-table tbody tr:hover {
    background: #f8f9fc;
}
.calendar-table .importance {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
}
.importance.high {
    background: #e74c3c;
}
.importance.medium {
    background: #f39c12;
}
.importance.low {
    background: #27ae60;
}
.flag-icon {
    margin-right: 6px;
    font-size: 16px;
    vertical-align: -1px;
}

.calendar-table .impact-high {
    background: #fde8e8;
    color: #991b1b;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    display: inline-block;
    font-size: 12px;
}
.calendar-table .impact-medium {
    background: #fef3cd;
    color: #854d0e;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    display: inline-block;
    font-size: 12px;
}
.calendar-table .impact-low {
    background: #eef0f5;
    color: #3d405b;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    display: inline-block;
    font-size: 12px;
}

@media (max-width: 768px) {
    .live-clock {
        flex-direction: column;
        align-items: flex-start;
    }
    .calendar-table {
        font-size: 12px;
    }
    .calendar-table thead th,
    .calendar-table tbody td {
        padding: 10px 8px;
    }
}

/* ---------- EDUCATION ---------- */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 16px;
}
.resource-item {
    background: #f8f9fc;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    border: 1px solid #eef0f5;
    transition: 0.2s;
}
.resource-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}
.resource-item i {
    font-size: 34px;
    color: #f0b90b;
    margin-bottom: 12px;
}
.resource-item h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0b0e1a;
    margin-bottom: 8px;
}
.resource-item p {
    font-size: 14px;
    color: #3d405b;
    margin-bottom: 16px;
    line-height: 1.5;
}
.resource-item .btn-resource {
    display: inline-block;
    background: #f0b90b;
    color: #0b0e1a;
    font-weight: 700;
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 13px;
    transition: 0.2s;
}
.resource-item .btn-resource:hover {
    background: #d4a308;
    transform: scale(1.04);
}
@media (max-width: 768px) {
    .resource-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .resource-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- FAQ (Accordion) ---------- */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.accordion-item {
    border: 1px solid #eef0f5;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.2s;
}
.accordion-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.accordion-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    background: #f8f9fc;
    font-weight: 600;
    font-size: 16px;
    color: #0b0e1a;
    transition: background 0.2s;
}
.accordion-question:hover {
    background: #f0f2f8;
}
.accordion-question i {
    font-size: 18px;
    color: #f0b90b;
    transition: transform 0.3s ease;
}
.accordion-item.active .accordion-question i {
    transform: rotate(45deg);
}
.accordion-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
    color: #3d405b;
    font-size: 15px;
    line-height: 1.7;
}
.accordion-item.active .accordion-answer {
    max-height: 500px;
    padding: 16px 24px 20px;
}
@media (max-width: 768px) {
    .accordion-question {
        padding: 14px 16px;
        font-size: 15px;
    }
}

/* ---------- MARKET ANALYSIS ---------- */
.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 16px;
}
.analysis-item {
    background: #f8f9fc;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    border: 1px solid #eef0f5;
    transition: 0.2s;
}
.analysis-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}
.analysis-item i {
    font-size: 34px;
    color: #f0b90b;
    margin-bottom: 12px;
}
.analysis-item h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0b0e1a;
    margin-bottom: 8px;
}
.analysis-item p {
    font-size: 14px;
    color: #3d405b;
    margin-bottom: 16px;
    line-height: 1.5;
}
.analysis-item .btn-analysis {
    display: inline-block;
    background: #f0b90b;
    color: #0b0e1a;
    font-weight: 700;
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 13px;
    transition: 0.2s;
}
.analysis-item .btn-analysis:hover {
    background: #d4a308;
    transform: scale(1.04);
}
@media (max-width: 768px) {
    .analysis-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .analysis-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- NEWS ---------- */
.featured-news {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef0f5;
    transition: box-shadow 0.2s;
}
.featured-news:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
}
.featured-news .featured-img {
    background: #0b0e1a;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0b90b;
    font-size: 64px;
    position: relative;
}
.featured-news .featured-img .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 30px 20px;
    background: linear-gradient(0deg, rgba(11, 14, 26, 0.9) 0%, transparent 100%);
    color: #fff;
}
.featured-news .featured-img .overlay .tag {
    display: inline-block;
    background: #f0b90b;
    color: #0b0e1a;
    padding: 2px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.featured-news .featured-img .overlay h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}
.featured-news .featured-img .overlay p {
    color: #d0d4e0;
    font-size: 14px;
    margin-bottom: 0;
}
.featured-news .featured-body {
    padding: 20px 30px 24px;
}
.featured-news .featured-body .meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #6a7088;
    margin-bottom: 10px;
}
.featured-news .featured-body .meta i {
    margin-right: 4px;
}
.featured-news .featured-body p {
    color: #3d405b;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}
.featured-news .featured-body .read-more {
    color: #f0b90b;
    font-weight: 600;
    font-size: 14px;
    transition: 0.2s;
}
.featured-news .featured-body .read-more:hover {
    color: #d4a308;
}

.news-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0b0e1a;
    color: #f0b90b;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}
.news-badge i {
    font-size: 16px;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 4px;
}
.news-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #eef0f5;
    align-items: flex-start;
    transition: 0.2s;
}
.news-item:last-child {
    border-bottom: none;
}
.news-item:hover {
    padding-left: 8px;
}
.news-item .news-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: #f0f2f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0b90b;
    font-size: 22px;
}
.news-item .news-content {
    flex: 1;
}
.news-item .news-content .news-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #f0b90b;
}
.news-item .news-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0b0e1a;
    margin: 2px 0 4px;
    line-height: 1.3;
}
.news-item .news-content h4 a:hover {
    color: #f0b90b;
}
.news-item .news-content .news-meta {
    font-size: 12px;
    color: #6a7088;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.news-item .news-content .news-meta i {
    margin-right: 3px;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.category-tabs .cat-btn {
    background: #f0f2f8;
    border: none;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #3d405b;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}
.category-tabs .cat-btn:hover,
.category-tabs .cat-btn.active {
    background: #0b0e1a;
    color: #f0b90b;
}

.trending-list {
    list-style: none;
    padding: 0;
}
.trending-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eef0f5;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.trending-list li:last-child {
    border-bottom: none;
}
.trending-list .rank {
    font-weight: 800;
    font-size: 18px;
    color: #cdd2e0;
    min-width: 28px;
}
.trending-list .trend-text {
    font-size: 14px;
    color: #0b0e1a;
    font-weight: 500;
}
.trending-list .trend-text a:hover {
    color: #f0b90b;
}

@media (max-width: 768px) {
    .featured-news .featured-img {
        min-height: 160px;
    }
    .featured-news .featured-img .overlay h3 {
        font-size: 18px;
    }
    .featured-news .featured-body {
        padding: 16px 20px 20px;
    }
    .news-item {
        flex-direction: column;
        gap: 8px;
    }
    .news-item .news-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
@media (max-width: 480px) {
    .featured-news .featured-img .overlay {
        padding: 16px 16px 12px;
    }
    .featured-news .featured-img .overlay h3 {
        font-size: 16px;
    }
}

/* ---------- PLATFORM ---------- */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 16px;
}
.platform-item {
    background: #f8f9fc;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    border: 1px solid #eef0f5;
    transition: 0.2s;
}
.platform-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}
.platform-item i {
    font-size: 36px;
    color: #f0b90b;
    margin-bottom: 12px;
}
.platform-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0b0e1a;
    margin-bottom: 8px;
}
.platform-item p {
    font-size: 14px;
    color: #3d405b;
    margin-bottom: 16px;
}
.platform-item .btn-platform {
    display: inline-block;
    background: #f0b90b;
    color: #0b0e1a;
    font-weight: 700;
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 13px;
    transition: 0.2s;
}
.platform-item .btn-platform:hover {
    background: #d4a308;
    transform: scale(1.04);
}
@media (max-width: 768px) {
    .platform-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- PRIVACY, RISK, TERMS (shared page-content) ---------- */
.page-content {
    padding: 50px 0 60px;
}
.privacy-card,
.risk-card,
.terms-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef0f5;
    max-width: 960px;
    margin: 0 auto;
    font-size: 15px;
    color: #3d405b;
}
.privacy-card h1,
.risk-card h1,
.terms-card h1 {
    font-size: 34px;
    font-weight: 800;
    color: #0b0e1a;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.privacy-card h1 i,
.risk-card h1 i,
.terms-card h1 i {
    color: #f0b90b;
    font-size: 30px;
}
.privacy-card h2,
.risk-card h2,
.terms-card h2 {
    font-size: 22px;
    font-weight: 700;
    color: #0b0e1a;
    margin: 32px 0 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid #f0b90b;
    display: inline-block;
}
.privacy-card p,
.risk-card p,
.terms-card p {
    margin-bottom: 14px;
    line-height: 1.7;
}
.privacy-card ul,
.risk-card ul,
.terms-card ul,
.privacy-card ol,
.risk-card ol,
.terms-card ol {
    margin: 10px 0 16px 22px;
}
.privacy-card li,
.risk-card li,
.terms-card li {
    margin-bottom: 8px;
    padding-left: 6px;
}
.privacy-card strong,
.risk-card strong,
.terms-card strong {
    color: #0b0e1a;
}
.privacy-card a,
.risk-card a,
.terms-card a {
    color: #f0b90b;
    font-weight: 600;
    text-decoration: underline;
}
.privacy-card a:hover,
.risk-card a:hover,
.terms-card a:hover {
    color: #c99407;
}
.last-updated {
    font-size: 13px;
    color: #8e92a8;
    margin-top: -12px;
    margin-bottom: 28px;
}
.warning-box {
    background: #fff8e1;
    border-left: 4px solid #f0b90b;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
}
.warning-box p {
    margin-bottom: 6px;
}

@media (max-width: 1024px) {
    .privacy-card,
    .risk-card,
    .terms-card {
        padding: 28px 25px;
    }
}
@media (max-width: 768px) {
    .privacy-card h1,
    .risk-card h1,
    .terms-card h1 {
        font-size: 28px;
    }
    .privacy-card h2,
    .risk-card h2,
    .terms-card h2 {
        font-size: 20px;
    }
}
@media (max-width: 480px) {
    .privacy-card h1,
    .risk-card h1,
    .terms-card h1 {
        font-size: 24px;
    }
    .privacy-card,
    .risk-card,
    .terms-card {
        padding: 20px 18px;
    }
}

/* ---------- PROMOTION ---------- */
.highlight-box {
    background: #fffbe6;
    border-left: 4px solid #f0b90b;
    padding: 16px 20px;
    border-radius: 8px;
    margin: 16px 0;
    font-weight: 500;
}

/* ---------- TRADING ---------- */
.conditions-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 8px;
    font-size: 14px;
}
.conditions-table th {
    background: #f0f2f8;
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
    color: #0b0e1a;
    border-bottom: 2px solid #eef0f5;
}
.conditions-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #eef0f5;
    color: #3d405b;
}
.conditions-table tr:last-child td {
    border-bottom: none;
}
@media (max-width: 768px) {
    .conditions-table {
        font-size: 12px;
    }
    .conditions-table th,
    .conditions-table td {
        padding: 10px 8px;
    }
}

/* ---------- WEEKLY (snapshot) ---------- */
.snapshot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 8px;
}
.snapshot-item {
    background: #f8f9fc;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    border: 1px solid #eef0f5;
}
.snapshot-item .symbol {
    font-weight: 700;
    font-size: 13px;
    color: #0b0e1a;
    margin-bottom: 2px;
}
.snapshot-item .price {
    font-weight: 800;
    font-size: 15px;
    color: #0b0e1a;
}
.snapshot-item .change {
    font-size: 12px;
    font-weight: 600;
    margin-top: 2px;
}
.snapshot-item .change.up {
    color: #22c55e;
}
.snapshot-item .change.down {
    color: #ef4444;
}
@media (max-width: 768px) {
    .snapshot-grid {
        grid-template-columns: 1fr;
    }
}