        :root {
            --bg: #05070d;
            --bg-2: #080b14;
            --card: rgba(15, 19, 32, .72);
            --card-solid: #0e1320;

            --text: #f5f7ff;
            --muted: #8c94aa;
            --muted-2: #636c82;

            --blue: #5b8cff;
            --blue-2: #2864ff;
            --cyan: #42dfff;
            --purple: #8b5cf6;
            --green: #35e6a1;

            --border: rgba(65 65 65 / 8%);
            --border-hover: rgba(91,140,255,.45);

            --shadow: 0 25px 80px rgba(0,0,0,.45);
            --radius: 24px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background:
                radial-gradient(circle at 15% 10%, rgba(55,93,255,.12), transparent 30%),
                radial-gradient(circle at 85% 20%, rgba(139,92,246,.10), transparent 28%),
                var(--bg);
            color: var(--text);
            font-family: Inter, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            opacity: .25;
            background-image:
                linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
            background-size: 55px 55px;
            mask-image: linear-gradient(to bottom, black, transparent 80%);
            z-index: -1;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            max-width: 100%;
        }

        .container {
            width: min(1180px, calc(100% - 40px));
            margin: auto;
        }

        /* =========================
           HEADER
        ========================= */

        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 18px 0;
            transition: .3s;
        }

        .header.scrolled {
            background: rgba(5,7,13,.78);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
        }

        .nav {
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 10px 0 20px;
            border: 1px solid rgba(255,255,255,.07);
            border-radius: 18px;
            background: rgba(12,16,27,.6);
            backdrop-filter: blur(20px);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 11px;
            font-family: Manrope, sans-serif;
            font-weight: 800;
            font-size: 22px;
            letter-spacing: -.8px;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            display: grid;
            place-items: center;
            border-radius: 11px;
            color: white;
            background: linear-gradient(135deg, var(--blue), var(--purple));
            box-shadow: 0 0 30px rgba(91,140,255,.35);
        }

        .logo span {
            color: var(--blue);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 7px;
            list-style: none;
        }

        .nav-links a {
            color: #aab1c2;
            font-size: 13px;
            font-weight: 600;
            padding: 10px 14px;
            border-radius: 10px;
            transition: .2s;
        }

        .nav-links a:hover {
            color: white;
            background: rgba(255,255,255,.05);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .login {
            font-size: 13px;
            font-weight: 600;
            color: #b9c0d2;
        }

        .mobile-btn {
            display: none;
            border: 0;
            background: transparent;
            color: white;
            font-size: 25px;
            cursor: pointer;
        }

        /* =========================
           BUTTONS
        ========================= */

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            padding: 13px 19px;
            border-radius: 12px;
            border: 1px solid transparent;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            transition: .25s;
        }

        .btn-primary {
            color: white;
            background: linear-gradient(135deg, #5689ff, #315df4);
            box-shadow:
                0 8px 30px rgba(49,93,244,.28),
                inset 0 1px rgba(255,255,255,.2);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(49,93,244,.4);
        }

        .btn-ghost {
            color: #dce2f0;
            background: rgba(255,255,255,.035);
            border-color: var(--border);
        }

        .btn-ghost:hover {
            border-color: var(--border-hover);
            background: rgba(91,140,255,.08);
        }

        .btn-large {
            padding: 16px 25px;
            border-radius: 14px;
            font-size: 14px;
        }

        /* =========================
           HERO
        ========================= */

        .hero {
            position: relative;
          /*  min-height: 900px; */
            padding-top: 180px;
            overflow: hidden;
        }

        .hero-glow {
            position: absolute;
            width: 700px;
            height: 700px;
            left: 50%;
            top: -250px;
            transform: translateX(-50%);
            background: radial-gradient(circle,
                rgba(55,102,255,.22),
                rgba(89,50,255,.08) 35%,
                transparent 70%);
            filter: blur(10px);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            text-align: center;
            z-index: 2;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 12px;
            border: 1px solid rgba(91,140,255,.25);
            background: rgba(91,140,255,.07);
            border-radius: 999px;
            color: #a9c1ff;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .5px;
            text-transform: uppercase;
        }

        .status-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--green);
            box-shadow: 0 0 12px var(--green);
        }

        .hero h1 {
            max-width: 950px;
            margin: 25px auto 20px;
            font-family: Manrope, sans-serif;
            font-size: clamp(48px, 7vw, 86px);
            line-height: .98;
            letter-spacing: -4px;
            font-weight: 800;
        }

        .gradient-text {
            background: linear-gradient(
                100deg,
                #fff 5%,
                #89adff 45%,
                #9a6cff 75%,
                #42dfff
            );
            -webkit-background-clip: text;
            color: transparent;
        }

        .hero-description {
            max-width: 650px;
            margin: auto;
            color: var(--muted);
            font-size: 16px;
        }

        .hero-buttons {
            margin-top: 32px;
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .hero-stats {
            margin: 65px auto 0;
            max-width: 800px;
            display: grid;
            grid-template-columns: repeat(4,1fr);
            padding: 1px;
            background: var(--border);
            border-radius: 18px;
            overflow: hidden;
        }

        .stat {
            padding: 20px;
            background: rgba(10,14,24,.85);
            border-right: 1px solid var(--border);
        }

        .stat:last-child {
            border: 0;
        }

        .stat strong {
            display: block;
            font-family: Manrope;
            font-size: 22px;
        }

        .stat span {
            color: var(--muted);
            font-size: 11px;
        }

        /* =========================
           DASHBOARD MOCKUP
        ========================= */

        .dashboard-wrap {
            position: relative;
            max-width: 1050px;
            margin: 80px auto 0;
            perspective: 1000px;
        }

        .dashboard {
            position: relative;
            display: grid;
            grid-template-columns: 190px 1fr;
            min-height: 430px;
            border: 1px solid rgba(255,255,255,.1);
            border-radius: 22px;
            overflow: hidden;
            background: rgba(11,15,25,.92);
            box-shadow:
                0 50px 100px rgba(0,0,0,.55),
                0 0 100px rgba(52,93,255,.10);
            transform: rotateX(2deg);
        }

        .dash-side {
            border-right: 1px solid var(--border);
            background: rgba(7,10,18,.9);
            padding: 20px 12px;
        }

        .dash-brand {
            padding: 10px;
            font-weight: 800;
            font-size: 15px;
            margin-bottom: 22px;
        }

        .dash-menu {
            display: grid;
            gap: 5px;
        }

        .dash-menu div {
            padding: 11px 12px;
            color: #737c93;
            font-size: 11px;
            border-radius: 9px;
            text-align: left;
        }

        .dash-menu div.active {
            color: white;
            background: linear-gradient(
                90deg,
                rgba(78,126,255,.18),
                rgba(78,126,255,.04)
            );
        }

        .dash-main {
            padding: 25px;
            background:
                radial-gradient(circle at 70% 0%, rgba(78,126,255,.07), transparent 35%);
        }

        .dash-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }

        .dash-title {
            font-family: Manrope;
            font-size: 17px;
            font-weight: 800;
        }

        .online {
            display: flex;
            align-items: center;
            gap: 7px;
            color: #68e8ae;
            font-size: 10px;
            font-weight: 700;
        }

        .server-card {
            padding: 20px;
            border-radius: 16px;
            border: 1px solid var(--border);
            background: rgba(255,255,255,.025);
            margin-bottom: 15px;
        }

        .server-header {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .game-icon {
            width: 43px;
            height: 43px;
            display: grid;
            place-items: center;
            border-radius: 12px;
            background: linear-gradient(135deg,#487fff,#753cff);
            font-size: 20px;
        }

        .server-name {
            font-weight: 700;
            font-size: 13px;
        }

        .server-ip {
            color: var(--muted);
            font-size: 10px;
            margin-top: 2px;
        }

        .server-state {
            margin-left: auto;
            color: #5ee6a8;
            font-size: 10px;
        }

        .progress {
            height: 5px;
            margin-top: 20px;
            background: rgba(255,255,255,.05);
            border-radius: 99px;
            overflow: hidden;
        }

        .progress span {
            display: block;
            width: 67%;
            height: 100%;
            background: linear-gradient(90deg,var(--blue),var(--cyan));
            border-radius: inherit;
        }

        .metrics {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 12px;
        }

        .metric {
            padding: 16px;
            border-radius: 14px;
            background: rgba(255,255,255,.025);
            border: 1px solid var(--border);
            text-align: left;
        }

        .metric small {
            color: var(--muted);
            font-size: 9px;
        }

        .metric strong {
            display: block;
            margin-top: 5px;
            font-size: 18px;
        }

        /* =========================
           SECTIONS
        ========================= */

        section {
            padding: 50px 0;
        }

        .section-head {
            max-width: 650px;
            margin-bottom: 50px;
        }

        .section-label {
            color: #7197ff;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .section-head h2 {
            font-family: Manrope;
            font-size: clamp(32px, 4vw, 48px);
            line-height: 1.05;
            letter-spacing: -2px;
        }

        .section-head p {
            margin-top: 15px;
            color: var(--muted);
            font-size: 14px;
        }

        /* =========================
           FEATURES
        ========================= */

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 15px;
        }

        .feature {
            position: relative;
            min-height: 230px;
            padding: 27px;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            background: linear-gradient(
                145deg,
                rgba(18,23,38,.8),
                rgba(9,12,20,.75)
            );
            overflow: hidden;
            transition: .3s;
        }

        .feature::after {
            content: "";
            position: absolute;
            width: 180px;
            height: 180px;
            right: -100px;
            top: -100px;
            border-radius: 50%;
            background: rgba(67,114,255,.15);
            filter: blur(40px);
        }

        .feature:hover {
            transform: translateY(-5px);
            border-color: var(--border-hover);
        }

        .feature-icon {
            width: 45px;
            height: 45px;
            display: grid;
            place-items: center;
            border-radius: 13px;
            background: rgba(82,127,255,.1);
            border: 1px solid rgba(82,127,255,.18);
            color: #77a0ff;
            font-size: 19px;
            margin-bottom: 25px;
        }

        .feature h3 {
            font-size: 16px;
            margin-bottom: 8px;
        }

        .feature p {
            color: var(--muted);
            font-size: 12px;
        }

        /* =========================
           GAMES
        ========================= */

        .game-grid {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 15px;
        }

        .game {
            position: relative;
            min-height: 260px;
            padding: 25px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            border-radius: 22px;
            overflow: hidden;
            border: 1px solid var(--border);
            background: #0b0f1a;
            transition: .3s;
        }

        .game:hover {
            transform: translateY(-5px);
            border-color: rgba(91,140,255,.4);
        }

        .game::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 80% 20%, rgba(75,113,255,.25), transparent 35%),
                linear-gradient(to top, #090c14, transparent);
        }

        .game-content {
            position: relative;
            z-index: 2;
        }

        .game-tag {
            display: inline-block;
            padding: 5px 8px;
            border-radius: 6px;
            background: rgba(255,255,255,.08);
            color: #b8c0d1;
            font-size: 9px;
            margin-bottom: 10px;
        }

        .game h3 {
            font-family: Manrope;
            font-size: 21px;
        }

        .game p {
            color: var(--muted);
            font-size: 11px;
            margin-top: 5px;
        }

        .pricing-section {
            background:
                radial-gradient(circle at 50% 0%, rgba(73,102,255,.08), transparent 45%);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 16px;
        }

        .pricing {
            position: relative;
            padding: 30px;
            border-radius: 22px;
            background: rgba(13,17,29,.85);
            border: 1px solid var(--border);
            transition: .3s;
        }

        .pricing:hover {
            transform: translateY(-5px);
            border-color: rgba(91,140,255,.35);
        }

        .pricing.popular {
            border-color: rgba(91,140,255,.55);
            box-shadow: 0 20px 60px rgba(40,80,220,.12);
        }

        .popular-badge {
            position: absolute;
            right: 20px;
            top: 20px;
            padding: 6px 9px;
            border-radius: 7px;
            background: rgba(91,140,255,.13);
            color: #83a8ff;
            font-size: 9px;
            font-weight: 800;
        }

        .pricing-icon {
            width: 48px;
            height: 48px;
            display: grid;
            place-items: center;
            border-radius: 14px;
            background: linear-gradient(135deg,rgba(76,126,255,.2),rgba(132,79,255,.16));
            font-size: 22px;
            margin-bottom: 20px;
        }

        .pricing h3 {
            font-size: 19px;
        }

        .pricing-subtitle {
            color: var(--muted);
            font-size: 11px;
            margin-top: 4px;
        }

        .price {
            margin: 22px 0;
            font-family: Manrope;
            font-size: 34px;
            font-weight: 800;
            letter-spacing: -1px;
        }

        .price span {
            color: var(--muted);
            font-family: Inter;
            font-size: 11px;
            font-weight: 500;
        }

        .pricing ul {
            list-style: none;
            margin: 25px 0;
            display: grid;
            gap: 11px;
        }

        .pricing li {
            color: #aab2c4;
            font-size: 11px;
            display: flex;
            align-items: center;
            gap: 9px;
        }

        .pricing li::before {
            content: "✓";
            display: grid;
            place-items: center;
            width: 17px;
            height: 17px;
            border-radius: 50%;
            color: #69e7ac;
            background: rgba(53,230,161,.08);
            font-size: 9px;
            font-weight: 800;
        }

        .pricing .btn {
            width: 100%;
        }

        .web-box {
<!--        display: grid; -->
            grid-template-columns: .9fr 1.1fr;
            gap: 50px;
            align-items: center;
<!--        padding: 55px; -->
<!--        border-radius: 30px; -->
<!--        background:
                radial-gradient(circle at 90% 0%,rgba(101,74,255,.18),transparent 35%),
                linear-gradient(145deg,#101729,#090c15); -->
            border: 1px solid var(--border);
            overflow: hidden;
        }

        .web-box h2 {
            font-family: Manrope;
            font-size: 42px;
            line-height: 1.05;
            letter-spacing: -2px;
        }

        .web-box p {
            color: var(--muted);
            margin: 15px 0 25px;
            font-size: 13px;
        }

        .web-features {
            display: grid;
            grid-template-columns: repeat(2,1fr);
            gap: 10px;
        }

        .web-feature {
            padding: 15px;
            border: 1px solid var(--border);
            border-radius: 13px;
            background: rgba(255,255,255,.025);
        }

        .web-feature strong {
            display: block;
            font-size: 12px;
        }

        .web-feature span {
            color: var(--muted);
            font-size: 10px;
        }

        .faq {
            max-width: 800px;
            margin: auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--border);
        }

        .faq-question {
            width: 100%;
            padding: 22px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 0;
            background: transparent;
            color: white;
            cursor: pointer;
            font: inherit;
            font-size: 14px;
            font-weight: 700;
            text-align: left;
        }

        .faq-question span {
            color: var(--blue);
            font-size: 20px;
            transition: .25s;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            color: var(--muted);
            font-size: 12px;
            transition: .3s;
        }

        .faq-item.open .faq-answer {
            max-height: 150px;
            padding-bottom: 20px;
        }

        .faq-item.open .faq-question span {
            transform: rotate(45deg);
        }

        .cta {
            padding: 90px 0;
        }

        .cta-box {
            position: relative;
            text-align: center;
            padding: 80px 30px;
            border-radius: 30px;
            overflow: hidden;
            border: 1px solid rgba(91,140,255,.2);
            background:
                radial-gradient(circle at 50% 100%, rgba(54,101,255,.25), transparent 55%),
                #0b101c;
        }

        .cta-box::before {
            content: "";
            position: absolute;
            width: 400px;
            height: 400px;
            left: 50%;
            top: -300px;
            transform: translateX(-50%);
            border-radius: 50%;
            background: rgba(91,140,255,.13);
            filter: blur(70px);
        }

        .cta-box > * {
            position: relative;
        }

        .cta-box h2 {
            font-family: Manrope;
            font-size: clamp(32px,5vw,54px);
            letter-spacing: -2px;
        }

        .cta-box p {
            max-width: 520px;
            margin: 15px auto 28px;
            color: var(--muted);
            font-size: 13px;
        }

        footer {
            border-top: 1px solid var(--border);
            padding: 35px 0;
        }

        .footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--muted);
            font-size: 11px;
        }

        .footer-links {
            display: flex;
            gap: 20px;
        }

        .footer-links a:hover {
            color: white;
        }

        .reveal {
         /*   opacity: 0; */
            transform: translateY(25px);
            transition: opacity .7s ease, transform .7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes float {
            0%,100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }

        .dashboard-wrap {
            animation: float 6s ease-in-out infinite;
        }

        @media (max-width: 900px) {

            .nav-links,
            .nav-actions {
                display: none;
            }

            .mobile-btn {
                display: block;
            }

            .hero {
                min-height: auto;
                padding-top: 145px;
                padding-bottom: 70px;
            }

            .hero h1 {
                letter-spacing: -2.5px;
            }

            .hero-stats {
                grid-template-columns: repeat(2,1fr);
            }

            .stat:nth-child(2) {
                border-right: 0;
            }

            .dashboard {
                grid-template-columns: 1fr;
            }

            .dash-side {
                display: none;
            }

            .feature-grid,
            .game-grid,
            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .web-box {
                grid-template-columns: 1fr;
                padding: 35px;
            }

            .web-box h2 {
                font-size: 34px;
            }
        }

        @media (max-width: 600px) {

            .container {
                width: min(100% - 26px, 1180px);
            }

            .header {
                padding: 10px 0;
            }

            .nav {
                height: 58px;
            }

            .hero h1 {
                font-size: 45px;
            }

            .hero-description {
                font-size: 14px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .hero-buttons .btn {
                width: 100%;
            }

            .dashboard-wrap {
                margin-top: 50px;
            }

            .dashboard {
                min-height: 350px;
            }

            .dash-main {
                padding: 17px;
            }

            .metrics {
                grid-template-columns: 1fr;
            }

            section {
                padding: 75px 0;
            }

            .section-head {
                margin-bottom: 30px;
            }

            .web-features {
                grid-template-columns: 1fr;
            }

            .footer {
                flex-direction: column;
                gap: 18px;
                text-align: center;
            }
        }