    /* --- 1. THEME VARIABLES (Dark/Light Engine) --- */
    :root {
        /* Light Mode Defaults */
        --bg-body: #f8f9fc;
        --bg-card: #ffffff;
        --bg-glass: rgba(255, 255, 255, 0.8);
        --text-main: #111111;
        --text-muted: #666666;
        --border-color: #e0e0e0;
        --primary: #6c3ef4;
        --primary-dark: #5e17eb;
        --primary-glow: rgba(108, 62, 244, 0.15);
        --success: #00c853;
        --danger: #e53935;
        --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        --hover-shadow: 0 20px 40px -10px rgba(108, 62, 244, 0.2);
        --hero-gradient: radial-gradient(circle at 100% 0%, rgba(108, 62, 244, 0.08) 0%, transparent 50%);
    }

    /* Dark Mode Override */
    body.dark-theme {
        --bg-body: #0a0b1e;
        --bg-card: #14152a;
        --bg-glass: rgba(20, 21, 42, 0.8);
        --text-main: #ffffff;
        --text-muted: #a0a0b0;
        --border-color: #2a2b45;
        --primary: #7b4dff;
        --primary-dark: #6c3ef4;
        --primary-glow: rgba(123, 77, 255, 0.25);
        --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
        --hover-shadow: 0 20px 50px -10px rgba(123, 77, 255, 0.3);
        --hero-gradient: radial-gradient(circle at 100% 0%, rgba(123, 77, 255, 0.15) 0%, transparent 50%);
    }

    /* --- 2. GLOBAL RESET --- */
    * {
        box-sizing: border-box;
    }

    body {
        font-family: 'Inter', sans-serif;
        margin: 0;
        background: var(--bg-body);
        color: var(--text-main);
        overflow-x: hidden;
        transition: 0.3s;
    }

    h1,
    h2,
    h3,
    h4 {
        margin: 0;
        padding: 0;
    }

    a {
        text-decoration: none;
        transition: 0.3s;
    }

    ul {
        list-style: none;
        padding: 0;
    }

    .container {
        width: 90%;
        max-width: 1200px;
        margin: auto;
    }

    /* Typography Utils */
    .text-primary {
        color: var(--primary);
    }

    .num-font {
        font-family: 'JetBrains Mono', monospace;
    }

    .section-heading {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-heading h2 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .section-heading p {
        color: var(--text-muted);
        font-size: 18px;
    }

    /* --- 3. COMPONENTS --- */
    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: #fff;
        padding: 14px 32px;
        border-radius: 50px;
        font-weight: 600;
        box-shadow: 0 10px 20px rgba(108, 62, 244, 0.3);
        transition: all 0.3s ease;
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(108, 62, 244, 0.5);
    }

    .btn-ghost {
        display: inline-flex;
        align-items: center;
        padding: 14px 32px;
        border-radius: 50px;
        font-weight: 300;
        border: 1px solid var(--border-color);
        color: var(--text-main);
        background: transparent;
    }

    .btn-ghost:hover {
        border-color: var(--primary);
        color: var(--primary);
    }

    /* Cards */
    .card {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 20px;
        padding: 30px;
        transition: 0.3s;
        overflow: hidden;
    }

    .card:hover {
        transform: translateY(-8px);
        box-shadow: var(--hover-shadow);
        border-color: var(--primary);
    }

    /* --- 4. HERO SECTION --- */
    .hero {
        padding: 140px 0 100px;
        background: var(--hero-gradient);
        position: relative;
    }

    /* Glow Effect */
    .hero::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: var(--primary);
        opacity: 0.08;
        filter: blur(120px);
        top: -100px;
        left: -100px;
        border-radius: 50%;
        z-index: -1;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .hero-left h1 {
        font-size: 58px;
        line-height: 1.1;
        font-weight: 800;
        letter-spacing: -1.5px;
        margin-bottom: 24px;
    }

    .hero-left p {
        font-size: 18px;
        color: var(--text-muted);
        margin-bottom: 35px;
        line-height: 1.6;
    }

    .hero-btns {
        display: flex;
        gap: 15px;
    }

    .hero-img-box {
        position: relative;
        animation: float 6s ease-in-out infinite;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-img-box img {
        width: 110%;
        height: auto;
        max-width: none;
        object-fit: contain;
        filter: drop-shadow(0 20px 50px rgba(63, 161, 191, 0.25)) drop-shadow(0 0 40px rgba(63, 191, 180, 0.1));
        transition: all 0.4s ease;
    }

    .hero-img-box img:hover {
        filter: drop-shadow(0 30px 70px rgba(127, 63, 191, 0.35)) drop-shadow(0 0 60px rgba(123, 63, 191, 0.15));
        transform: scale(1.02);
    }

    /* --- 5. PLATFORM SECTIONS (Split Layout) --- */
    .platform-section {
        padding: 100px 0;
    }

    .split-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .split-layout.reverse {
        direction: rtl;
    }

    /* Quick hack for layout flip */
    .split-layout.reverse>* {
        direction: ltr;
    }

    .plat-img img {
        width: 100%;
        border-radius: 20px;
        box-shadow: var(--card-shadow);
    }

    .plat-content h3 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .plat-content p {
        color: var(--text-muted);
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .feature-list {
        display: grid;
        gap: 20px;
    }

    .feature-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        background: var(--bg-card);
        padding: 20px;
        border-radius: 12px;
        border: 1px solid var(--border-color);
        transition: 0.3s;
    }

    .feature-item:hover {
        border-color: var(--primary);
        transform: translateX(5px);
    }

    .f-icon {
        font-size: 24px;
        color: var(--primary);
        background: var(--primary-glow);
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
    }

    .feature-item h4 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .feature-item p {
        font-size: 14px;
        color: var(--text-muted);
        margin: 0;
    }

    /* --- 6. COMPARISON TABLE --- */
    .table-section {
        padding: 80px 0;
        background: var(--bg-body);
    }

    .comp-table {
        width: 100%;
        border-collapse: collapse;
        background: var(--bg-card);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--card-shadow);
        border: 1px solid var(--border-color);
    }

    .comp-table th {
        background: var(--bg-body);
        padding: 25px;
        text-align: left;
        color: var(--text-muted);
        font-weight: 600;
        text-transform: uppercase;
        font-size: 13px;
    }

    .comp-table td {
        padding: 25px;
        border-top: 1px solid var(--border-color);
        font-weight: 600;
        color: var(--text-main);
    }

    .comp-table tr:hover td {
        background: var(--primary-glow);
    }

    /* --- 7. LATENCY & SERVERS (Grid) --- */
    .grid-section {
        padding: 80px 0;
    }

    .grid-3 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .server-card {
        text-align: center;
        padding: 40px 30px;
        position: relative;
    }

    .flag-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        margin: 0 auto 20px;
        object-fit: cover;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .server-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.05;
        z-index: 0;
        transition: 0.5s;
    }

    .server-card:hover .server-bg {
        opacity: 0.15;
        transform: scale(1.1);
    }

    .card-content {
        position: relative;
        z-index: 1;
    }

    /* --- 8. DOWNLOAD & CTA --- */
    .cta-box {
        background: linear-gradient(135deg, #14152a, #0a0b1e);
        border-radius: 30px;
        padding: 60px;
        text-align: center;
        position: relative;
        overflow: hidden;
        color: #fff;
        margin: 80px auto;
    }

    .cta-box h2 {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .cta-box p {
        color: #a0a0b0;
        margin-bottom: 30px;
        font-size: 18px;
    }

    .download-grid {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .dl-btn {
        background: rgba(255, 255, 255, 0.1);
        padding: 20px 30px;
        border-radius: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        min-width: 140px;
    }

    .dl-btn:hover {
        background: var(--primary);
        border-color: var(--primary);
        transform: translateY(-5px);
    }

    .dl-btn img {
        width: 40px;
        filter: brightness(0) invert(1);
    }

    /* Make icons white */

    /* --- 9. GET STARTED STEPS --- */
    .step-card {
        text-align: center;
        position: relative;
    }

    .step-num {
        width: 40px;
        height: 40px;
        background: var(--primary);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        margin: 0 auto -20px;
        position: relative;
        z-index: 2;
        border: 4px solid var(--bg-card);
    }

    /* Responsive */
    @media (max-width: 900px) {

        .hero-grid,
        .split-layout {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 40px;
        }

        .hero-btns {
            justify-content: center;
        }

        .split-layout.reverse {
            direction: ltr;
        }

        .feature-item {
            text-align: left;
        }

        .hero-left h1 {
            font-size: 40px;
        }
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-15px);
        }
    }
