
        /* ===== RESET & BASE ===== */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg-primary: #0b111e;
            --bg-secondary: #111927;
            --bg-card: #151f33;
            --bg-card-hover: #1a2740;
            --bg-input: #0f1a2b;
            --text-primary: #ffffff;
            --text-secondary: #94a3b8;
            --text-muted: #64748b;
            --accent-green: #00d4aa;
            --accent-green-dark: #00b894;
            --accent-orange: #f7931a;
            --accent-blue: #3b82f6;
            --accent-red: #ef4444;
            --accent-purple: #8b5cf6;
            --accent-pink: #ec4899;
            --border-color: #1e2d45;
            --shadow-color: rgba(0, 0, 0, 0.4);
            --radius: 12px;
            --radius-sm: 8px;
            --transition: 0.25s ease;
            --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --header-height: 68px;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font);
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            min-height: 100vh;
            padding-top: var(--header-height);
        }

        a {
            color: var(--accent-green);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-green-dark);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== SCROLLBAR ===== */
        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-secondary);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--accent-green);
            border-radius: 10px;
        }

        /* ===== HEADER ===== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(11, 17, 30, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-color);
            height: var(--header-height);
            display: flex;
            align-items: center;
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            gap: 16px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-primary);
            flex-shrink: 0;
        }
        .logo i {
            color: var(--accent-green);
            font-size: 1.6rem;
        }
        .logo span {
            color: var(--accent-green);
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .nav a {
            color: var(--text-secondary);
            font-size: 0.875rem;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: var(--radius-sm);
            transition: var(--transition);
            position: relative;
        }
        .nav a:hover,
        .nav a.active {
            color: var(--text-primary);
            background: var(--bg-card);
        }
        .nav a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 2px;
            background: var(--accent-green);
            border-radius: 2px;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .search-toggle {
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 1.1rem;
            cursor: pointer;
            padding: 6px;
            border-radius: 50%;
            transition: var(--transition);
        }
        .search-toggle:hover {
            color: var(--text-primary);
            background: var(--bg-card);
        }

        .btn-outline-sm {
            background: transparent;
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
            padding: 6px 16px;
            border-radius: var(--radius-sm);
            font-size: 0.8rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            font-family: var(--font);
        }
        .btn-outline-sm:hover {
            border-color: var(--accent-green);
            color: var(--accent-green);
            background: rgba(0, 212, 170, 0.06);
        }

        .btn-primary-sm {
            background: var(--accent-green);
            border: none;
            color: #0b111e;
            padding: 6px 18px;
            border-radius: var(--radius-sm);
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-family: var(--font);
        }
        .btn-primary-sm:hover {
            background: var(--accent-green-dark);
            transform: translateY(-1px);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 4px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
        }
        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: var(--transition);
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: var(--header-height);
            left: 0;
            right: 0;
            background: var(--bg-primary);
            border-bottom: 1px solid var(--border-color);
            padding: 16px 20px 24px;
            z-index: 999;
            flex-direction: column;
            gap: 4px;
        }
        .mobile-nav.open {
            display: flex;
        }
        .mobile-nav a {
            color: var(--text-secondary);
            font-size: 1rem;
            font-weight: 500;
            padding: 10px 14px;
            border-radius: var(--radius-sm);
            transition: var(--transition);
        }
        .mobile-nav a:hover,
        .mobile-nav a.active {
            color: var(--text-primary);
            background: var(--bg-card);
        }
        .mobile-nav .mobile-actions {
            display: flex;
            gap: 10px;
            margin-top: 8px;
            padding-top: 12px;
            border-top: 1px solid var(--border-color);
        }

        /* ===== SEARCH OVERLAY ===== */
        .search-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(11, 17, 30, 0.96);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .search-overlay.open {
            display: flex;
        }
        .search-overlay .search-box {
            max-width: 600px;
            width: 100%;
            position: relative;
        }
        .search-overlay input {
            width: 100%;
            padding: 16px 20px;
            padding-right: 56px;
            background: var(--bg-card);
            border: 2px solid var(--border-color);
            border-radius: var(--radius);
            color: var(--text-primary);
            font-size: 1.1rem;
            font-family: var(--font);
            outline: none;
            transition: var(--transition);
        }
        .search-overlay input:focus {
            border-color: var(--accent-green);
        }
        .search-overlay .search-close {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 1.4rem;
            cursor: pointer;
        }

        /* ===== TICKER ===== */
        .ticker {
            background: var(--bg-secondary);
            border-bottom: 1px solid var(--border-color);
            padding: 8px 0;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            height: 42px;
            display: flex;
            align-items: center;
        }
        .ticker-track {
            display: inline-flex;
            gap: 48px;
            animation: tickerScroll 32s linear infinite;
        }
        .ticker-item {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.85rem;
            color: var(--text-secondary);
        }
        .ticker-item .symbol {
            font-weight: 600;
            color: var(--text-primary);
        }
        .ticker-item .price {
            font-weight: 500;
        }
        .ticker-item .change.positive {
            color: var(--accent-green);
        }
        .ticker-item .change.negative {
            color: var(--accent-red);
        }
        .ticker-item .change i {
            margin-right: 4px;
        }

        @keyframes tickerScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* ===== HERO ===== */
        .hero {
            padding: 48px 0 40px;
            background: var(--bg-primary);
            border-bottom: 1px solid var(--border-color);
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .hero-content h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
        }
        .hero-content h1 .highlight {
            color: var(--accent-green);
        }
        .hero-content p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 480px;
            margin-bottom: 28px;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .btn-hero-primary {
            background: var(--accent-green);
            border: none;
            color: #0b111e;
            padding: 14px 32px;
            border-radius: var(--radius);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-family: var(--font);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-hero-primary:hover {
            background: var(--accent-green-dark);
            transform: translateY(-2px);
        }
        .btn-hero-secondary {
            background: transparent;
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
            padding: 14px 32px;
            border-radius: var(--radius);
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            font-family: var(--font);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-hero-secondary:hover {
            border-color: var(--accent-green);
            color: var(--accent-green);
            background: rgba(0, 212, 170, 0.06);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 24px;
            border: 1px solid var(--border-color);
        }
        .hero-stat .label {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }
        .hero-stat .value {
            font-size: 1.4rem;
            font-weight: 700;
            margin-top: 2px;
        }

        /* ===== SECTION HEADERS ===== */
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 20px;
        }
        .section-header h2 {
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: -0.01em;
        }
        .section-header h2 i {
            color: var(--accent-green);
            margin-right: 8px;
        }
        .section-header .view-all {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--accent-green);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
        }
        .section-header .view-all:hover {
            gap: 10px;
            color: var(--accent-green-dark);
        }

        /* ===== NEWS GRID ===== */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .news-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            border: 1px solid var(--border-color);
            overflow: hidden;
            transition: var(--transition);
        }
        .news-card:hover {
            border-color: var(--accent-green);
            transform: translateY(-4px);
        }
        .news-card .img-placeholder {
            height: 160px;
            background: var(--bg-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.4rem;
            color: var(--text-muted);
            position: relative;
        }
        .news-card .img-placeholder .badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--accent-green);
            color: #0b111e;
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            padding: 2px 12px;
            border-radius: 20px;
            letter-spacing: 0.04em;
        }
        .news-card .body {
            padding: 18px 20px 20px;
        }
        .news-card .body .tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: var(--accent-green);
            background: rgba(0, 212, 170, 0.1);
            padding: 2px 12px;
            border-radius: 20px;
            margin-bottom: 8px;
        }
        .news-card .body h4 {
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 6px;
        }
        .news-card .body h4 a {
            color: var(--text-primary);
        }
        .news-card .body h4 a:hover {
            color: var(--accent-green);
        }
        .news-card .body .meta {
            font-size: 0.8rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 8px;
        }
        .news-card .body .meta i {
            margin-right: 4px;
        }

        /* ===== TECHNICAL ANALYSIS ===== */
        .analysis-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 20px;
        }
        .analysis-main .chart-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            border: 1px solid var(--border-color);
            padding: 24px;
        }
        .analysis-main .chart-card .chart-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 16px;
        }
        .analysis-main .chart-card .chart-header h3 {
            font-size: 1.1rem;
            font-weight: 600;
        }
        .analysis-main .chart-card .chart-header h3 small {
            font-weight: 400;
            color: var(--text-muted);
            font-size: 0.8rem;
            margin-left: 6px;
        }
        .analysis-main .chart-card .chart-wrap {
            position: relative;
            height: 220px;
        }
        .analysis-main .chart-card .chart-wrap canvas {
            width: 100% !important;
            height: 100% !important;
        }

        .chart-timeframes {
            display: flex;
            gap: 4px;
        }
        .chart-timeframes button {
            background: transparent;
            border: 1px solid var(--border-color);
            color: var(--text-muted);
            padding: 2px 12px;
            border-radius: var(--radius-sm);
            font-size: 0.7rem;
            font-weight: 500;
            cursor: pointer;
            font-family: var(--font);
            transition: var(--transition);
        }
        .chart-timeframes button:hover,
        .chart-timeframes button.active {
            background: var(--accent-green);
            color: #0b111e;
            border-color: var(--accent-green);
        }

        .analysis-side {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .analysis-side .insight-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            border: 1px solid var(--border-color);
            padding: 18px 20px;
            transition: var(--transition);
            cursor: pointer;
        }
        .analysis-side .insight-card:hover {
            border-color: var(--accent-green);
        }
        .analysis-side .insight-card .top {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 6px;
        }
        .analysis-side .insight-card .top .avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--bg-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.75rem;
            color: var(--accent-green);
            flex-shrink: 0;
        }
        .analysis-side .insight-card .top .name {
            font-weight: 600;
            font-size: 0.85rem;
        }
        .analysis-side .insight-card .top .name span {
            color: var(--text-muted);
            font-weight: 400;
            font-size: 0.75rem;
        }
        .analysis-side .insight-card p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 6px;
        }
        .analysis-side .insight-card .signal {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 2px 12px;
            border-radius: 20px;
        }
        .analysis-side .insight-card .signal.bullish {
            color: var(--accent-green);
            background: rgba(0, 212, 170, 0.1);
        }
        .analysis-side .insight-card .signal.bearish {
            color: var(--accent-red);
            background: rgba(239, 68, 68, 0.1);
        }
        .analysis-side .insight-card .signal.neutral {
            color: var(--accent-orange);
            background: rgba(247, 147, 26, 0.1);
        }

        /* ===== FORUM / DISCUSSION ===== */
        .forum-section {
            padding: 40px 0;
            border-top: 1px solid var(--border-color);
        }
        .forum-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 20px;
        }
        .forum-list {
            background: var(--bg-card);
            border-radius: var(--radius);
            border: 1px solid var(--border-color);
            overflow: hidden;
        }
        .forum-list .thread {
            padding: 16px 20px;
            border-bottom: 1px solid var(--border-color);
            transition: var(--transition);
            cursor: pointer;
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }
        .forum-list .thread:last-child {
            border-bottom: none;
        }
        .forum-list .thread:hover {
            background: var(--bg-card-hover);
        }
        .forum-list .thread .vote {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
            flex-shrink: 0;
            padding-top: 2px;
        }
        .forum-list .thread .vote .num {
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-primary);
        }
        .forum-list .thread .vote .label {
            font-size: 0.6rem;
            text-transform: uppercase;
            color: var(--text-muted);
            letter-spacing: 0.04em;
        }
        .forum-list .thread .content {
            flex: 1;
        }
        .forum-list .thread .content .title {
            font-weight: 600;
            font-size: 1rem;
            color: var(--text-primary);
            margin-bottom: 2px;
        }
        .forum-list .thread .content .title:hover {
            color: var(--accent-green);
        }
        .forum-list .thread .content .excerpt {
            font-size: 0.85rem;
            color: var(--text-secondary);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .forum-list .thread .content .thread-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 6px;
            font-size: 0.75rem;
            color: var(--text-muted);
        }
        .forum-list .thread .content .thread-meta .author {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .forum-list .thread .content .thread-meta .author .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent-green);
            display: inline-block;
        }
        .forum-list .thread .content .thread-meta i {
            margin-right: 2px;
        }
        .forum-list .thread .content .tags {
            display: flex;
            gap: 6px;
            margin-top: 6px;
            flex-wrap: wrap;
        }
        .forum-list .thread .content .tags .tag {
            font-size: 0.6rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            padding: 1px 10px;
            border-radius: 20px;
            background: var(--bg-secondary);
            color: var(--text-muted);
            border: 1px solid var(--border-color);
        }
        .forum-list .thread .content .tags .tag.hot {
            color: var(--accent-red);
            border-color: var(--accent-red);
            background: rgba(239, 68, 68, 0.08);
        }
        .forum-list .thread .content .tags .tag.pinned {
            color: var(--accent-orange);
            border-color: var(--accent-orange);
            background: rgba(247, 147, 26, 0.08);
        }

        .forum-side {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .forum-side .side-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            border: 1px solid var(--border-color);
            padding: 20px;
        }
        .forum-side .side-card h4 {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 12px;
        }
        .forum-side .side-card h4 i {
            color: var(--accent-green);
            margin-right: 6px;
        }
        .forum-side .side-card .stat-row {
            display: flex;
            justify-content: space-between;
            padding: 6px 0;
            font-size: 0.85rem;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--border-color);
        }
        .forum-side .side-card .stat-row:last-child {
            border-bottom: none;
        }
        .forum-side .side-card .stat-row .num {
            color: var(--text-primary);
            font-weight: 600;
        }
        .forum-side .side-card .active-user {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 0;
            border-bottom: 1px solid var(--border-color);
        }
        .forum-side .side-card .active-user:last-child {
            border-bottom: none;
        }
        .forum-side .side-card .active-user .avatar-sm {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--bg-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 0.7rem;
            color: var(--accent-green);
            flex-shrink: 0;
        }
        .forum-side .side-card .active-user .name {
            font-size: 0.85rem;
            font-weight: 500;
        }
        .forum-side .side-card .active-user .status {
            font-size: 0.7rem;
            color: var(--text-muted);
            margin-left: auto;
        }
        .forum-side .side-card .active-user .status.online {
            color: var(--accent-green);
        }

        .btn-forum {
            background: var(--accent-green);
            border: none;
            color: #0b111e;
            padding: 12px 24px;
            border-radius: var(--radius);
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-family: var(--font);
            width: 100%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .btn-forum:hover {
            background: var(--accent-green-dark);
            transform: translateY(-2px);
        }

        /* ===== AD PLACEMENT ===== */
        .ad-container {
            background: var(--bg-secondary);
            border-radius: var(--radius);
            border: 1px solid var(--border-color);
            padding: 20px;
            text-align: center;
            color: var(--text-muted);
            font-size: 0.8rem;
            margin: 20px 0;
            min-height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 6px;
        }
        .ad-container .ad-label {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-muted);
        }
        .ad-container .ad-placeholder {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
            padding: 48px 0 24px;
            margin-top: 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-brand .logo {
            margin-bottom: 12px;
        }
        .footer-brand p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            max-width: 300px;
        }
        .footer-brand .social {
            display: flex;
            gap: 12px;
            margin-top: 16px;
        }
        .footer-brand .social a {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: var(--transition);
        }
        .footer-brand .social a:hover {
            border-color: var(--accent-green);
            color: var(--accent-green);
            background: rgba(0, 212, 170, 0.06);
        }

        .footer-col h5 {
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: var(--text-muted);
            margin-bottom: 14px;
        }
        .footer-col a {
            display: block;
            color: var(--text-secondary);
            font-size: 0.9rem;
            padding: 4px 0;
            transition: var(--transition);
        }
        .footer-col a:hover {
            color: var(--accent-green);
            padding-left: 4px;
        }

        .footer-bottom {
            border-top: 1px solid var(--border-color);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        .footer-bottom a {
            color: var(--text-muted);
        }
        .footer-bottom a:hover {
            color: var(--accent-green);
        }
        .footer-bottom .legal {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* ===== RESPONSIVE ===== */

        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .hero-content h1 {
                font-size: 2.2rem;
            }
            .hero-stats {
                grid-template-columns: repeat(3, 1fr);
            }
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .analysis-grid {
                grid-template-columns: 1fr;
            }
            .forum-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 820px) {
            .nav {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .header-actions .btn-outline-sm,
            .header-actions .btn-primary-sm {
                display: none;
            }
            .hero-content h1 {
                font-size: 1.9rem;
            }
            .hero-stats {
                grid-template-columns: repeat(3, 1fr);
                padding: 18px;
                gap: 12px;
            }
            .hero-stat .value {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 600px) {
            :root {
                --header-height: 60px;
            }

            .container {
                padding: 0 14px;
            }

            .logo {
                font-size: 1.2rem;
            }
            .logo i {
                font-size: 1.3rem;
            }

            .hero {
                padding: 28px 0 24px;
            }
            .hero-content h1 {
                font-size: 1.6rem;
            }
            .hero-content p {
                font-size: 0.95rem;
            }
            .hero-actions {
                flex-direction: column;
                width: 100%;
            }
            .hero-actions .btn-hero-primary,
            .hero-actions .btn-hero-secondary {
                width: 100%;
                justify-content: center;
            }
            .hero-stats {
                grid-template-columns: 1fr 1fr;
                padding: 14px;
                gap: 10px;
            }
            .hero-stat .value {
                font-size: 1rem;
            }

            .section-header h2 {
                font-size: 1.3rem;
            }

            .news-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .news-card .img-placeholder {
                height: 120px;
            }

            .analysis-main .chart-card {
                padding: 14px;
            }
            .analysis-main .chart-card .chart-wrap {
                height: 160px;
            }
            .analysis-side .insight-card {
                padding: 14px 16px;
            }

            .forum-list .thread {
                padding: 12px 14px;
                flex-wrap: wrap;
            }
            .forum-list .thread .vote {
                flex-direction: row;
                gap: 6px;
                width: 100%;
                padding-bottom: 4px;
            }
            .forum-list .thread .vote .num {
                font-size: 0.85rem;
            }
            .forum-list .thread .vote .label {
                font-size: 0.55rem;
            }
            .forum-side .side-card {
                padding: 14px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .footer-bottom .legal {
                justify-content: center;
            }

            .ad-container {
                padding: 14px;
                min-height: 80px;
            }

            .ticker {
                height: 34px;
            }
            .ticker-item {
                font-size: 0.7rem;
                gap: 6px;
            }
            .ticker-track {
                gap: 28px;
                animation-duration: 24s;
            }

            .mobile-nav a {
                font-size: 0.95rem;
                padding: 8px 12px;
            }

            .btn-forum {
                padding: 10px 18px;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 400px) {
            .hero-stats {
                grid-template-columns: 1fr 1fr;
                gap: 6px;
                padding: 12px;
            }
            .hero-stat .value {
                font-size: 0.9rem;
            }
            .hero-stat .label {
                font-size: 0.65rem;
            }
        }
    