        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

        :root {
            --tv-dark: #0a0e27;
            --tv-darker: #050812;
            --tv-blue: #1e3a8a;
            --tv-blue-light: #60a5fa;
            --tv-cyan: #22d3ee;
            --tv-purple: #a78bfa;
            --tv-green: #34d399;
            --tv-text-primary: #f9fafb;
            --tv-text-secondary: #e5e7eb;
            --tv-text-muted: #d1d5db;
            --tv-border: #1f2937;
            --tv-glow: rgba(96, 165, 250, 0.35);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', system-ui, sans-serif;
            background: var(--tv-darker);
            color: var(--tv-text-primary);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        /* Animated background */
        .bg-animation {
            position: fixed;
            inset: 0;
            background:
                radial-gradient(circle at 20% 30%, rgba(96, 165, 250, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(34, 211, 238, 0.10) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(167, 139, 250, 0.08) 0%, transparent 60%),
                linear-gradient(135deg, #050812 0%, #0a0e27 100%);
            z-index: -2;
        }

        /* Floating orbs */
        .orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            z-index: -1;
            animation: float 18s ease-in-out infinite;
        }
        .orb1 {
            width: 400px;
            height: 400px;
            background: #60a5fa;
            top: -100px;
            left: -100px;
        }
        .orb2 {
            width: 350px;
            height: 350px;
            background: #22d3ee;
            bottom: -80px;
            right: -80px;
            animation-delay: -6s;
        }
        .orb3 {
            width: 280px;
            height: 280px;
            background: #a78bfa;
            top: 40%;
            right: 15%;
            animation-delay: -12s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            33% { transform: translate(40px, -30px); }
            66% { transform: translate(-30px, 25px); }
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 3rem 1.5rem;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        /* Live badge */
        .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(248, 113, 113, 0.15);
            border: 1px solid #f87171;
            color: #f87171;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 2rem;
            text-transform: uppercase;
        }
        .live-dot {
            width: 8px;
            height: 8px;
            background: #f87171;
            border-radius: 50%;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.3); }
        }

        h1 {
            font-size: 3.6rem;
            font-weight: 800;
            margin-bottom: 0.6rem;
            background: linear-gradient(90deg, #60a5fa, #22d3ee, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 0 40px rgba(96, 165, 250, 0.3);
        }

        .tagline {
            font-size: 1.4rem;
            color: var(--tv-cyan);
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .description {
            font-size: 1.15rem;
            color: var(--tv-text-secondary);
            max-width: 600px;
            margin: 0 auto 2.8rem;
            line-height: 1.7;
        }

        /* Download button */
        .download-btn {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(34, 211, 238, 0.15));
            color: var(--tv-text-primary);
            padding: 18px 40px;
            border-radius: 16px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.15rem;
            border: 2px solid var(--tv-blue-light);
            transition: all 0.35s ease;
            box-shadow: 0 0 30px rgba(96, 165, 250, 0.3);
            position: relative;
            overflow: hidden;
        }
        .download-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }
        .download-btn:hover::before {
            transform: translateX(100%);
        }
        .download-btn:hover {
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 0 50px rgba(96, 165, 250, 0.55);
            border-color: var(--tv-cyan);
            background: linear-gradient(135deg, rgba(96, 165, 250, 0.35), rgba(34, 211, 238, 0.25));
        }
        .download-btn img {
            height: 38px;
        }

        /* Features */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.8rem;
            margin-top: 5rem;
        }

        .feature {
            background: rgba(15, 20, 45, 0.7);
            border: 1px solid var(--tv-border);
            border-radius: 18px;
            padding: 2rem 1.6rem;
            transition: all 0.35s ease;
            position: relative;
            overflow: hidden;
        }
        .feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--tv-cyan), transparent);
            opacity: 0;
            transition: opacity 0.35s ease;
        }
        .feature:hover {
            border-color: var(--tv-blue-light);
            box-shadow: 0 0 35px rgba(96, 165, 250, 0.25);
            transform: translateY(-8px);
            background: rgba(20, 28, 60, 0.85);
        }
        .feature:hover::before {
            opacity: 1;
        }

        .feature-icon {
            font-size: 2.6rem;
            margin-bottom: 1.1rem;
            display: inline-block;
            filter: drop-shadow(0 0 12px rgba(34, 211, 238, 0.4));
        }

        .feature h3 {
            color: var(--tv-cyan);
            font-size: 1.2rem;
            margin-bottom: 0.7rem;
            font-weight: 600;
        }

        .feature p {
            color: var(--tv-text-muted);
            font-size: 0.95rem;
            line-height: 1.55;
        }

        /* Stats bar */
        .stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 4.5rem;
            flex-wrap: wrap;
        }
        .stat {
            text-align: center;
        }
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--tv-blue-light);
            text-shadow: 0 0 20px var(--tv-glow);
        }
        .stat-label {
            font-size: 0.9rem;
            color: var(--tv-text-muted);
            margin-top: 0.3rem;
        }

        footer {
            margin-top: 5.5rem;
            padding-top: 2rem;
            border-top: 1px solid var(--tv-border);
            color: var(--tv-text-muted);
            font-size: 0.9rem;
        }
        footer p {
            margin: 0.35rem 0;
        }

        @media (max-width: 768px) {
            h1 { font-size: 2.7rem; }
            .tagline { font-size: 1.2rem; }
            .logo { width: 120px; height: 120px; font-size: 2.5rem; border-radius: 24px; }
            .stats { gap: 2rem; }
        }

        a {
        color: #60a5fa;               /* Same blue used in the XtreamVault title */
        text-decoration: none;
        transition: color 0.25s ease;
        }

        a:hover {
        color: #22d3ee;               /* Cyan on hover */
        }

        a:visited {
        color: #60a5fa;               /* Keep the same color even after clicking */
        }

        a:active {
        color: #a78bfa;               /* Purple when actively clicking */
        }

        .logo-img {
            width: 160px;              /* Default size on desktop */
            height: auto;              /* Keeps aspect ratio */
            max-width: 70%;            /* Never wider than 70% of screen */
            display: block;
            margin: 0 auto 2rem;
            border-radius: 24px;       /* Optional – matches previous rounded look */
            box-shadow: 0 0 40px rgba(96, 165, 250, 0.45);
        }

        /* Tablet */
        @media (max-width: 768px) {
            .logo-img {
                width: 130px;
            }
        }

        /* Mobile */
        @media (max-width: 480px) {
            .logo-img {
                width: 110px;
            }
        }
