/* ── Reset & Base ── */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Space Grotesk', sans-serif;
            background-color: #05070c;
            color: #f0f3fa;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        /* ── Animated Background ── */
        body::before {
            content: "";
            position: fixed;
            inset: 0;
            background:
                radial-gradient(circle at 15% 25%, rgba(0, 245, 255, 0.08), transparent 40%),
                radial-gradient(circle at 85% 75%, rgba(201, 151, 78, 0.06), transparent 35%),
                radial-gradient(circle at 50% 50%, rgba(0, 114, 255, 0.05), transparent 50%);
            z-index: -2;
        }

        body::after {
            content: "";
            position: fixed;
            inset: 0;
            background:
                repeating-linear-gradient(transparent 0px, transparent 3px, rgba(0, 255, 255, 0.015) 3px, rgba(0, 255, 255, 0.015) 6px);
            pointer-events: none;
            z-index: -1;
        }

        /* ── Scrollbar ── */
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #0f1220;
        }
        ::-webkit-scrollbar-thumb {
            background: #0ff;
            border-radius: 8px;
        }

        /* ── Glass Card ── */
        .glass-card {
            background: rgba(12, 16, 28, 0.72);
            backdrop-filter: blur(14px);
            border-radius: 2rem;
            border: 1px solid rgba(0, 255, 255, 0.18);
            transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            position: relative;
            overflow: hidden;
        }

        .glass-card::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, #0ff, #0072ff, #c9974e, #0ff);
            border-radius: inherit;
            opacity: 0;
            transition: opacity 0.45s;
            z-index: -1;
            background-size: 300% 300%;
        }

        .glass-card:hover::before {
            opacity: 0.20;
        }

        .glass-card:hover {
            transform: translateY(-8px);
            border-color: rgba(0, 255, 255, 0.55);
            box-shadow: 0 30px 50px -16px rgba(0, 255, 255, 0.22);
        }

        /* ── Typography ── */
        .neon-text {
            text-shadow: 0 0 12px rgba(0, 255, 255, 0.7), 0 0 4px #0ff;
        }

        .section-kicker {
            color: #0ff;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            font-size: 0.75rem;
            font-weight: 800;
        }

        .badge-cyber {
            background: rgba(0, 255, 255, 0.14);
            color: #0ff;
            border-radius: 40px;
            padding: 6px 18px;
            backdrop-filter: blur(4px);
            font-weight: 600;
        }

        /* ── Buttons ── */
        .btn-glow {
            background: linear-gradient(95deg, #00c6ff, #0072ff);
            border: none;
            color: #fff;
            font-weight: 700;
            padding: 12px 32px;
            border-radius: 60px;
            transition: all 0.25s ease;
            box-shadow: 0 4px 18px rgba(0, 118, 255, 0.4);
            position: relative;
            overflow: hidden;
        }

        .btn-glow::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -60%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 70%);
            opacity: 0;
            transition: opacity 0.35s;
        }

        .btn-glow:hover {
            transform: scale(1.03);
            background: linear-gradient(95deg, #00a1ff, #0059ff);
            box-shadow: 0 8px 30px rgba(0, 150, 255, 0.6);
            color: #fff;
        }

        .btn-glow:active::after {
            opacity: 0.5;
        }

        .btn-outline-cyber {
            border: 1.5px solid #0ff;
            background: rgba(0, 255, 255, 0.04);
            color: #0ff;
            border-radius: 60px;
            font-weight: 600;
            transition: 0.25s;
            backdrop-filter: blur(4px);
        }

        .btn-outline-cyber:hover {
            background: rgba(0, 255, 255, 0.15);
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
            color: #0ff;
            transform: translateY(-2px);
        }

        .btn-sm {
            padding: 8px 20px;
            font-size: 0.85rem;
        }

        /* ── Navbar ── */
        .navbar {
            background: rgba(5, 8, 18, 0.88);
            backdrop-filter: blur(22px);
            border-bottom: 1px solid rgba(0, 255, 255, 0.2);
            padding: 0.7rem 0;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(2, 4, 12, 0.97);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            border-bottom-color: rgba(0, 255, 255, 0.35);
        }

        .brand-wrap {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .brand-logo-shell {
            width: 48px;
            height: 48px;
            border-radius: 16px;
            padding: 3px;
            background: linear-gradient(145deg, rgba(201, 151, 78, 0.95), rgba(0, 245, 255, 0.5));
            box-shadow: 0 0 16px rgba(0, 255, 255, 0.25);
            transition: 0.25s;
        }

        .brand-logo-shell:hover {
            transform: scale(1.04);
            box-shadow: 0 0 28px rgba(0, 255, 255, 0.4);
        }

        .brand-logo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 13px;
        }

        .brand-text-main {
            font-family: 'Space Grotesk', monospace;
            font-weight: 800;
            font-size: 1.1rem;
            letter-spacing: 0.06em;
            color: #fff;
            line-height: 1.2;
        }

        .brand-text-sub {
            font-size: 0.65rem;
            letter-spacing: 0.18em;
            color: #9aaee5;
            text-transform: uppercase;
        }

        .navbar-nav .nav-link {
            color: #e2eaff !important;
            font-weight: 500;
            font-size: 0.92rem;
            transition: 0.2s;
            padding: 0.5rem 1.1rem;
            border-radius: 40px;
        }

        .navbar-nav .nav-link:hover {
            color: #0ff !important;
            background: rgba(0, 255, 255, 0.08);
        }

        .navbar-toggler {
            border: 1px solid rgba(0, 255, 255, 0.5);
            padding: 0.4rem 0.7rem;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .user-avatar {
            width: 40px;
            height: 40px;
            background: rgba(0, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: 1.5px solid rgba(0, 255, 255, 0.6);
            transition: 0.25s;
        }

        .user-avatar:hover {
            background: rgba(0, 255, 255, 0.25);
            transform: scale(1.06);
        }

        .dropdown-menu-cyber {
            background: rgba(11, 15, 28, 0.95);
            backdrop-filter: blur(18px);
            border: 1px solid rgba(0, 255, 255, 0.4);
            border-radius: 1.2rem;
            padding: 0.5rem;
        }

        .dropdown-item-cyber {
            color: #f0f3fa;
            border-radius: 0.8rem;
            padding: 0.6rem 1.2rem;
            transition: 0.2s;
        }

        .dropdown-item-cyber:hover {
            background: rgba(0, 255, 255, 0.15);
            color: #0ff;
        }

        /* ── Ticker ── */
        .ticker-wrap {
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 255, 255, 0.25);
            border-top: 1px solid rgba(0, 255, 255, 0.15);
            padding: 8px 0;
            margin-top: 74px;
        }

        @media (max-width: 768px) {
            .ticker-wrap {
                margin-top: 66px;
            }
        }

        .ticker-inner {
            display: flex;
            gap: 2rem;
            overflow-x: auto;
            scrollbar-width: none;
            white-space: nowrap;
            animation: tickerScroll 30s linear infinite;
        }

        .ticker-inner:hover {
            animation-play-state: paused;
        }

        .ticker-item {
            display: inline-flex;
            gap: 0.75rem;
            background: rgba(0, 255, 255, 0.05);
            padding: 4px 18px;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.85rem;
            border: 1px solid rgba(0, 255, 255, 0.1);
        }

        .price-up {
            color: #00ffb3;
        }
        .price-down {
            color: #ff4d6d;
        }

        @keyframes tickerScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Live indicator */
        .live-indicator {
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ff4d6d;
            margin-right: 6px;
            animation: pulse 1.5s ease-in-out infinite;
        }
        .live-indicator.on {
            background: #00ffb3;
        }

        @keyframes pulse {
            0% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(0.8); }
            100% { opacity: 1; transform: scale(1); }
        }

        /* ── Hero ── */
        .hero-logo-card {
            max-width: 380px;
            margin: 0 auto;
            padding: 1.2rem;
            border-radius: 2rem;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(18, 22, 35, 0.8));
            border: 1px solid rgba(0, 255, 255, 0.2);
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
        }

        .hero-logo-card img {
            width: 100%;
            border-radius: 1.4rem;
            display: block;
        }

        .hero-stats {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(0, 255, 255, 0.12);
            border-radius: 1.25rem;
            padding: 1rem 1.5rem;
        }

        /* ── Markets ── */
        .market-icon {
            font-size: 2.8rem;
            color: #0cc0ff;
            display: inline-block;
            transition: 0.3s;
        }

        .glass-card:hover .market-icon {
            transform: scale(1.12) rotate(-3deg);
            color: #0ff;
        }

        /* ── Price Cards ── */
        .price-card {
            background: #0b0f1a;
            border-radius: 2rem;
            transition: 0.3s;
        }

        .price-card .glass-card {
            background: rgba(12, 16, 28, 0.8);
        }

        /* ── Affiliate Partners Grid ── */
        .partner-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(0, 255, 255, 0.12);
            border-radius: 1.4rem;
            padding: 1.25rem 1.5rem;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
            color: #f0f3fa;
        }

        .partner-card:hover {
            border-color: #0ff;
            background: rgba(0, 255, 255, 0.06);
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 255, 255, 0.12);
            color: #f0f3fa;
        }

        .partner-card .partner-icon {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            background: rgba(0, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: #0ff;
            flex-shrink: 0;
        }

        .partner-card .partner-info {
            flex: 1;
        }
        .partner-card .partner-info h6 {
            margin: 0;
            font-weight: 700;
        }
        .partner-card .partner-info small {
            color: #9aaee5;
        }

        /* ── Social ── */
        .social-icon-circle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            background: rgba(18, 22, 35, 0.8);
            backdrop-filter: blur(8px);
            border-radius: 50%;
            border: 1px solid rgba(0, 255, 255, 0.3);
            transition: all 0.3s ease;
            font-size: 2rem;
            text-decoration: none;
            color: #b9c8ff;
        }

        .social-icon-circle:hover {
            transform: translateY(-8px) scale(1.06);
            border-color: #0ff;
            color: #0ff;
            box-shadow: 0 0 28px rgba(0, 255, 255, 0.4);
            background: rgba(0, 255, 255, 0.13);
        }

        .social-label {
            display: block;
            margin-top: 0.5rem;
            font-size: 0.75rem;
            font-weight: 500;
            color: #ccdeff;
        }

        /* ── Risk Badge ── */
        .risk-badge {
            background: rgba(255, 60, 60, 0.08);
            border-left: 4px solid #ff4d6d;
            border-radius: 1rem;
            padding: 1rem 1.5rem;
            font-size: 0.85rem;
        }

        /* ── Auth Modal ── */
        .auth-modal .modal-content {
            background: #0b0f1d;
            border: 1px solid rgba(0, 255, 255, 0.4);
            border-radius: 1.8rem;
        }

        .form-control {
            background: #161c2e;
            border: 1px solid #2c3145;
            color: #fff;
            border-radius: 1rem;
            padding: 0.8rem 1.2rem;
        }

        .form-control:focus {
            background: #161c2e;
            border-color: #0ff;
            box-shadow: 0 0 0 0.25rem rgba(0, 255, 255, 0.2);
            color: #fff;
        }

        .form-control::placeholder {
            color: #6a7a9e;
        }

        .password-strength {
            height: 4px;
            border-radius: 6px;
            margin-top: 8px;
            transition: width 0.25s;
            background: #2c2f3e;
        }

        /* ── Toast ── */
        .toast-notif {
            position: fixed;
            bottom: 28px;
            right: 28px;
            background: rgba(11, 15, 28, 0.92);
            backdrop-filter: blur(18px);
            border-left: 5px solid #0ff;
            color: #fff;
            padding: 14px 28px;
            border-radius: 60px;
            z-index: 1200;
            font-weight: 500;
            transform: translateX(130%);
            transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.1);
            pointer-events: none;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
        }

        .toast-notif.show {
            transform: translateX(0);
        }

        /* ── Competition / VS Badge ── */
        .vs-badge {
            font-size: 3.8rem;
            font-weight: 900;
            text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
            animation: vsPulse 2.2s ease-in-out infinite;
            background: rgba(0, 0, 0, 0.5);
            padding: 0.2rem 1.2rem;
            border-radius: 60px;
            border: 2px solid #0ff;
            backdrop-filter: blur(8px);
            line-height: 1.4;
            display: inline-block;
        }

        @keyframes vsPulse {
            0% { transform: scale(1); text-shadow: 0 0 20px #0ff, 0 0 40px #0072ff; }
            50% { transform: scale(1.08); text-shadow: 0 0 40px #0ff, 0 0 80px #0072ff, 0 0 120px #00c6ff; }
            100% { transform: scale(1); text-shadow: 0 0 20px #0ff, 0 0 40px #0072ff; }
        }

        .competition-card {
            border: 1px solid rgba(0, 255, 255, 0.3);
            transition: 0.3s;
        }
        .competition-card:hover {
            border-color: #0ff;
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.15);
        }

        .price-drop {
            background: rgba(255, 77, 109, 0.12);
            border: 2px dashed #ff4d6d;
            border-radius: 2rem;
            padding: 1.5rem;
        }

        /* ── Countdown ── */
        .countdown-box {
            background: rgba(0, 0, 0, 0.4);
            border-radius: 1.5rem;
            padding: 1rem 1.5rem;
            border: 1px solid rgba(0, 255, 255, 0.2);
            display: inline-flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        .countdown-item {
            text-align: center;
            min-width: 60px;
        }
        .countdown-item .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #0ff;
            line-height: 1;
        }
        .countdown-item .label {
            font-size: 0.7rem;
            text-transform: uppercase;
            color: #9aaee5;
            letter-spacing: 0.1em;
        }

        /* ── Leaderboard ── */
        .leaderboard-entry {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.6rem 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: 0.2s;
        }
        .leaderboard-entry:hover {
            background: rgba(0, 255, 255, 0.05);
            border-radius: 0.8rem;
        }
        .leaderboard-rank {
            font-weight: 800;
            color: #0ff;
            width: 30px;
            text-align: center;
        }
        .leaderboard-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(0, 255, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #0ff;
        }
        .leaderboard-name {
            flex: 1;
            font-weight: 500;
        }
        .leaderboard-profit {
            color: #00ffb3;
            font-weight: 700;
        }
        .leaderboard-profit.negative {
            color: #ff4d6d;
        }

        /* ── Testimonials ── */
        .testimonial-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 1.5rem;
            padding: 1.5rem;
            border: 1px solid rgba(0, 255, 255, 0.1);
            transition: 0.3s;
        }
        .testimonial-card:hover {
            border-color: #0ff;
            transform: translateY(-4px);
        }
        .testimonial-card .stars {
            color: #ffd700;
            letter-spacing: 2px;
        }

        /* ── Comparison Table ── */
        .comparison-table th {
            color: #0ff;
            font-weight: 600;
            border-bottom: 2px solid rgba(0, 255, 255, 0.2);
        }
        .comparison-table td {
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 0.8rem 0.5rem;
        }
        .comparison-table .highlight {
            color: #0ff;
            font-weight: 600;
        }

        /* ── Responsive ── */
        @media (max-width: 576px) {
            .brand-logo-shell {
                width: 38px;
                height: 38px;
            }
            .brand-text-main {
                font-size: 0.85rem;
            }
            .brand-text-sub {
                font-size: 0.55rem;
            }
            .navbar .container {
                gap: 0.3rem;
            }
            .hero-logo-card {
                max-width: 280px;
            }
            .social-icon-circle {
                width: 58px;
                height: 58px;
                font-size: 1.5rem;
            }
            .partner-card {
                flex-direction: column;
                text-align: center;
            }
            .partner-card .partner-icon {
                width: 48px;
                height: 48px;
            }
            .vs-badge {
                font-size: 2.8rem;
                padding: 0.1rem 0.8rem;
            }
            .countdown-box {
                gap: 0.8rem;
            }
            .countdown-item .number {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 992px) {
            .navbar-nav {
                padding: 0.5rem 0;
            }
            .navbar-nav .nav-link {
                padding: 0.4rem 0.8rem;
            }
        }