:root {
            --bg:         #0f0d15;
            --surface:    #18132a;
            --surface2:   #1f1a30;
            --accent:     #8c58d4;
            --accent-dark:#5f2ea8;
            --accent-glow:rgba(140, 88, 212, 0.18);
            --text:       #ffffff;
            --muted:      #8b82a0;
            --border:     rgba(140, 88, 212, 0.15);
            --radius:     12px;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }

        body {
            animation: page-in 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
            background: var(--bg);
            color: var(--text);
            font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
            min-height: 100vh;
            line-height: 1.5;
            overflow-x: hidden;
        }

        /* ── Wavy grid canvas ── */
        #bgGrid {
            position: fixed;
            inset: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        /* ── Noise overlay ── */
        body::after {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
            background-size: 200px;
            pointer-events: none;
            z-index: 0;
        }

        /* ── Top accent bar ── */
        .accent-bar {
            position: relative;
            z-index: 200;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-dark), var(--accent), #c084fc, var(--accent), var(--accent-dark));
            background-size: 300% 100%;
            animation: accent-flow 4s linear infinite;
        }

        @keyframes accent-flow {
            0%   { background-position: 0% 0; }
            100% { background-position: 300% 0; }
        }

        /* ── Nav ── */
        nav {
            position: sticky;
            top: 0;
            z-index: 9100;
            background: rgba(15, 13, 21, 0.88);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid var(--border);
            padding: 0 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            transition: background 0.3s, border-bottom-color 0.3s, box-shadow 0.3s;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .nav-brand img {
            height: 38px;
            width: 38px;
            object-fit: contain;
            border-radius: 8px;
            background: rgba(140, 88, 212, 0.12);
            border: 1px solid rgba(140, 88, 212, 0.25);
            padding: 3px;
            filter: brightness(1.1);
        }

        .nav-brand-text {
            font-weight: 800;
            font-size: 17px;
            color: var(--text);
            letter-spacing: -0.01em;
        }

        .nav-links {
            display: flex;
            gap: 28px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: var(--muted);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-links a:hover { color: var(--text); }

        .nav-purchase {
            color: var(--accent) !important;
            font-weight: 600 !important;
            border: 1px solid rgba(140,88,212,0.35);
            padding: 6px 14px;
            border-radius: 8px;
            transition: background 0.2s, transform 0.2s !important;
        }

        .nav-purchase:hover {
            background: var(--accent-glow);
            color: #fff !important;
            transform: translateY(-1px) !important;
        }

        .nav-links .nav-cta {
            background: var(--accent);
            color: #fff;
            padding: 7px 16px;
            border-radius: 8px;
            font-weight: 600;
            transition: background 0.2s, transform 0.2s;
        }

        .nav-links .nav-cta:hover {
            background: #9d6de0;
            color: #fff;
            transform: translateY(-1px);
        }

        /* ── Hero ── */
        .hero {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 80px 32px 60px;
            overflow: hidden;
        }

        .hero-glow {
            position: absolute;
            top: -80px;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(140,88,212,0.16) 0%, transparent 65%);
            pointer-events: none;
            animation: glow-pulse 8s ease-in-out infinite alternate;
        }

        .hero-glow-2 {
            position: absolute;
            bottom: -80px;
            left: 25%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(192,132,252,0.07) 0%, transparent 70%);
            pointer-events: none;
            animation: glow-pulse 12s ease-in-out infinite alternate-reverse;
        }

        @keyframes glow-pulse {
            from { opacity: 0.7; transform: translateX(-50%) scale(0.95); }
            to   { opacity: 1;   transform: translateX(-50%) scale(1.05); }
        }

        .hero-logo-wrap {
            width: 200px;
            height: 200px;
            margin: 0 auto 24px;
            border-radius: 24px;
            border: 3px solid rgba(140, 88, 212, 0.5);
            background: radial-gradient(circle at 50% 40%, rgba(140,88,212,0.22) 0%, rgba(24,19,42,0.95) 70%);
            box-shadow: 0 0 0 1px rgba(140,88,212,0.1), 0 8px 64px rgba(140,88,212,0.35), inset 0 1px 0 rgba(255,255,255,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fade-up 0.7s ease both;
            overflow: hidden;
            isolation: isolate;
            -webkit-mask-image: -webkit-radial-gradient(white, black);
            mask-image: radial-gradient(white, black);
            transition: box-shadow 0.35s, transform 0.35s;
        }

        .hero-logo-wrap:hover {
            box-shadow: 0 0 0 1px rgba(140,88,212,0.25), 0 16px 80px rgba(140,88,212,0.55), inset 0 1px 0 rgba(255,255,255,0.1);
            transform: translateY(-3px) scale(1.02);
        }

        .hero-logo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: drop-shadow(0 0 24px rgba(140,88,212,0.55)) brightness(1.08);
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--accent-glow);
            border: 1px solid var(--border);
            border-radius: 999px;
            padding: 4px 14px;
            font-size: 11px;
            color: var(--accent);
            margin-bottom: 20px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            animation: fade-up 0.7s 0.1s ease both;
        }

        .hero h1 {
            font-size: clamp(44px, 7vw, 72px);
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: 1.05;
            background: linear-gradient(135deg, #fff 15%, var(--accent) 50%, #c084fc 70%, #fff 90%);
            background-size: 300% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 14px;
            animation: fade-up 0.7s 0.15s ease both, shimmer-text 5s 1s ease-in-out infinite;
        }

        @keyframes shimmer-text {
            0%, 100% { background-position: 0% 50%; }
            50%       { background-position: 100% 50%; }
        }

        .hero p {
            color: var(--muted);
            font-size: 17px;
            max-width: 440px;
            margin: 0 auto 36px;
            animation: fade-up 0.7s 0.2s ease both;
        }

        .hero-actions {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fade-up 0.7s 0.25s ease both;
        }

        @keyframes fade-up {
            from { opacity: 0; transform: translateY(20px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        /* ── Buttons ── */
        .btn {
            position: relative;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            border: none;
            font-family: inherit;
        }

        .btn-ripple {
            position: absolute;
            border-radius: 50%;
            background: rgba(255,255,255,0.22);
            width: 6px;
            height: 6px;
            transform: scale(0);
            animation: btn-ripple 0.55s ease-out forwards;
            pointer-events: none;
            translate: -50% -50%;
        }

        @keyframes btn-ripple {
            to { transform: scale(50); opacity: 0; }
        }

        .btn-primary {
            background: var(--accent);
            color: #fff;
        }

        .btn-primary:hover {
            background: #9d6de0;
            transform: translateY(-1px);
            box-shadow: 0 8px 28px rgba(140,88,212,0.45);
        }

        .btn-purchase {
            background: transparent;
            color: var(--accent);
            border: 1px solid rgba(140,88,212,0.4);
        }

        .btn-purchase:hover {
            background: var(--accent-glow);
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(140,88,212,0.2);
        }

.btn-discord {
            background: transparent;
            color: var(--accent);
            border: 1px solid rgba(140,88,212,0.4);
        }

        .btn-discord:hover {
            background: var(--accent-glow);
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(140,88,212,0.2);
        }

        /* ── Hero perks row ── */
        .hero-perks {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 24px;
            animation: fade-up 0.7s 0.22s ease both;
            flex-wrap: wrap;
        }

        .hero-perk {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 999px;
        }

        .hero-perk-keyless {
            background: rgba(52, 211, 153, 0.1);
            border: 1px solid rgba(52, 211, 153, 0.3);
            color: #34d399;
        }

        .hero-perk-weekend {
            background: rgba(52, 211, 153, 0.1);
            border: 1px solid rgba(52, 211, 153, 0.3);
            color: #34d399;
        }

        .hero-perk-weekday {
            background: rgba(139, 130, 160, 0.08);
            border: 1px solid rgba(139, 130, 160, 0.2);
            color: var(--muted);
        }

        /* ── Stats bar ── */
        .stats-bar {
            position: relative;
            z-index: 1;
            display: flex;
            justify-content: center;
            max-width: 560px;
            margin: 0 auto 80px;
            background: rgba(24,19,42,0.72);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            animation: fade-up 0.7s 0.3s ease both;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 4px 32px rgba(0,0,0,0.3);
        }

        .stat {
            flex: 1;
            padding: 20px 16px;
            text-align: center;
            border-right: 1px solid var(--border);
            transition: background 0.2s;
        }

        .stat:hover { background: rgba(140,88,212,0.06); }
        .stat:last-child { border-right: none; }

        .stat-value {
            font-size: 26px;
            font-weight: 800;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 5px;
            letter-spacing: -0.02em;
        }

        .stat-label {
            font-size: 11px;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.07em;
            font-weight: 600;
        }
            to   { opacity: 1; transform: translateY(0); }
        }

        /* ── Executor page ── */
        .exec-page-header {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 56px 40px 32px;
            width: 100%;
        }
        .exec-page-header h2 {
            font-size: 32px;
            font-weight: 800;
            letter-spacing: -0.5px;
            margin-bottom: 8px;
        }
        .exec-page-header h2 span { color: var(--accent); }
        .exec-page-header p { color: var(--muted); font-size: 15px; }
        .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            font-weight: 600;
            color: #4ade80;
            background: rgba(74,222,128,0.1);
            border: 1px solid rgba(74,222,128,0.25);
            border-radius: 999px;
            padding: 3px 10px;
            margin-bottom: 14px;
        }
        .live-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #4ade80;
            animation: pulse-green 2.5s ease-in-out infinite;
        }
        .exec-controls {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            max-width: 860px;
            margin: 0 auto;
            padding: 0 40px 20px;
        }
        .exec-search-wrap {
            position: relative;
            flex: 1;
            max-width: 280px;
        }
        .exec-search-wrap .search-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--muted);
            pointer-events: none;
        }
        .exec-search-input {
            width: 100%;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 10px;
            color: var(--text);
            font-family: inherit;
            font-size: 13px;
            padding: 9px 12px 9px 36px;
            outline: none;
            transition: border-color 0.2s;
        }
        .exec-search-input:focus { border-color: rgba(140,88,212,0.5); }
        .exec-search-input::placeholder { color: var(--muted); }
        .exec-filter-group {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .exec-filter-btn {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--muted);
            font-family: inherit;
            font-size: 12px;
            font-weight: 600;
            padding: 7px 14px;
            cursor: pointer;
            transition: color 0.2s, background 0.2s, border-color 0.2s;
        }
        .exec-filter-btn:hover { color: var(--text); border-color: rgba(140,88,212,0.3); }
        .exec-filter-btn.active { color: var(--accent); background: var(--accent-glow); border-color: rgba(140,88,212,0.4); }
        .exec-status-stats {
            position: relative;
            z-index: 1;
            display: flex;
            justify-content: center;
            gap: 24px;
            padding: 0 40px 24px;
            flex-wrap: wrap;
        }
        .exec-stat-item { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
        .exec-stat-dot { width: 7px; height: 7px; border-radius: 50%; }
        .exec-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 12px;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 40px 80px;
        }
        .exec-card {
            background: rgba(24,19,42,0.72);
            border: 1px solid rgba(140,88,212,0.15);
            border-radius: var(--radius);
            padding: 16px;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
            box-shadow: inset 3px 0 0 var(--exec-stripe, transparent);
        }
        .exec-card[data-status="working"]  { --exec-stripe: rgba(74,222,128,0.6); }
        .exec-card[data-status="detected"] { --exec-stripe: rgba(248,113,113,0.6); }
        .exec-card[data-status="unknown"]  { --exec-stripe: rgba(107,114,128,0.4); }
        .exec-card:hover { border-color: rgba(140,88,212,0.35); transform: translateY(-2px); box-shadow: inset 3px 0 0 var(--exec-stripe, transparent), 0 8px 32px rgba(0,0,0,0.3); }
        .exec-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; margin-bottom: 12px; }
        .exec-card-name { font-size: 14px; font-weight: 700; }
        .exec-card-badges { display: flex; gap: 5px; flex-wrap: wrap; justify-content: flex-end; }
        .exec-badge { font-size: 10px; font-weight: 600; border-radius: 5px; padding: 2px 7px; white-space: nowrap; }
        .exec-badge-platform { color: var(--muted); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); }
        .exec-badge-free { color: #4ade80; background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.25); }
        .exec-badge-paid { color: var(--muted); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); }
        .exec-card-status { display: flex; align-items: center; gap: 7px; margin-bottom: 10px; }
        .exec-card-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
        .exec-card-dot.working  { background: #4ade80; box-shadow: 0 0 6px rgba(74,222,128,0.6); animation: pulse-green 2.5s ease-in-out infinite; }
        .exec-card-dot.detected { background: #f87171; box-shadow: 0 0 6px rgba(248,113,113,0.6); }
        .exec-card-dot.unknown  { background: #6b7280; }
        .exec-card-status-label { font-size: 12px; font-weight: 600; }
        .exec-card-status-label.working  { color: #4ade80; }
        .exec-card-status-label.detected { color: #f87171; }
        .exec-card-status-label.unknown  { color: #6b7280; }
        .exec-card-meta { display: flex; flex-direction: column; gap: 4px; }
        .exec-card-meta-row { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); }
        .exec-card-meta-row span:last-child { color: var(--text); font-weight: 500; }
        .exec-unc-bar { margin-top: 8px; height: 3px; background: rgba(255,255,255,0.07); border-radius: 99px; overflow: hidden; }
        .exec-unc-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--accent-dark), var(--accent)); }
        .exec-empty { grid-column: 1/-1; text-align: center; padding: 60px; color: var(--muted); font-size: 14px; display: none; }

        @media (max-width: 768px) {
            .exec-page-header { padding: 40px 20px 24px; }
            .exec-page-header h2 { font-size: 26px; }
            .exec-controls { padding: 0 20px 16px; }
            .exec-grid { padding: 0 20px 60px; gap: 10px; }
            .exec-status-stats { padding: 0 20px 16px; }
        }
        @media (max-width: 480px) {
            .exec-grid { grid-template-columns: 1fr; padding: 0 16px 52px; }
            .exec-controls { padding: 0 16px 12px; }
        }

        /* ── Executor status ── */
        .executor-bar {
            position: relative;
            z-index: 1;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
            max-width: 780px;
            margin: 0 auto 48px;
            padding: 0 40px;
            opacity: 0.9;
        }

        .executor-card {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(24,19,42,0.6);
            border: 1px solid rgba(140,88,212,0.12);
            border-radius: 999px;
            padding: 7px 14px;
            flex: 0 0 auto;
            transition: border-color 0.2s, opacity 0.2s;
        }

        .executor-card:hover { border-color: rgba(140,88,212,0.3); opacity: 1; }

        .executor-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            flex-shrink: 0;
            background: #6b7280;
        }
        .executor-dot.working  { background: #4ade80; box-shadow: 0 0 4px rgba(74,222,128,0.5); animation: pulse-green 2.5s ease-in-out infinite; }
        .executor-dot.detected { background: #f87171; box-shadow: 0 0 4px rgba(248,113,113,0.5); }
        .executor-dot.unknown  { background: #6b7280; }

        .executor-info { display: inline-flex; align-items: baseline; gap: 6px; min-width: 0; }
        .executor-name { font-size: 12.5px; font-weight: 600; color: #d8d4e8; white-space: nowrap; }
        .executor-meta { font-size: 11px; color: var(--muted); opacity: 0.7; white-space: nowrap; }

        @media (max-width: 480px) {
            .executor-bar { padding: 0 16px; gap: 5px; }
            .executor-card { padding: 4px 9px; }
        }

        /* ── How to use ── */
        .how-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 12px;
        }

        .how-step {
            background: rgba(24,19,42,0.72);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
        }

        .how-step:hover {
            border-color: rgba(140, 88, 212, 0.35);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 4px 20px rgba(140,88,212,0.1);
            transform: translateY(-2px);
        }

        .how-num {
            width: 30px;
            height: 30px;
            border-radius: 8px;
            background: var(--accent-glow);
            border: 1px solid rgba(140, 88, 212, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 800;
            color: var(--accent);
        }

        .how-title {
            font-size: 14px;
            font-weight: 700;
        }

        .how-desc {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.5;
        }

        /* ── Sections ── */
        .section {
            position: relative;
            z-index: 1;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 32px 80px;
        }

        .section-header {
            display: flex;
            align-items: baseline;
            gap: 12px;
            margin-bottom: 20px;
        }

        .section-header h2 {
            font-size: 22px;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .section-header span {
            font-size: 13px;
            color: var(--muted);
        }

        /* ── Search bar ── */
        .search-wrap {
            position: relative;
            display: inline-block;
            margin-bottom: 16px;
            width: 100%;
            max-width: 300px;
        }

        .search-icon {
            position: absolute;
            left: 11px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--muted);
            pointer-events: none;
        }

        .game-search {
            width: 100%;
            background: rgba(24,19,42,0.8);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 9px 14px 9px 34px;
            font-size: 13px;
            color: var(--text);
            font-family: inherit;
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
            backdrop-filter: blur(12px);
        }

        .game-search::placeholder { color: var(--muted); }

        .game-search:focus {
            border-color: rgba(140,88,212,0.45);
            box-shadow: 0 0 0 3px rgba(140,88,212,0.09);
        }

        /* ── Game grid ── */
        .game-grid {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        /* ── Game card ── */
        .game-card {
            background: rgba(24,19,42,0.72);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(140,88,212,0.15);
            border-radius: var(--radius);
            overflow: hidden;
            transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
            box-shadow: inset 3px 0 0 var(--status-stripe, transparent), inset 0 1px 0 rgba(255,255,255,0.05), 0 4px 24px rgba(0,0,0,0.25);
        }

        .game-card[data-status="green"]  { --status-stripe: rgba(74,222,128,0.7); }
        .game-card[data-status="yellow"] { --status-stripe: rgba(251,191,36,0.7); }
        .game-card[data-status="red"]    { --status-stripe: rgba(248,113,113,0.7); }

        .game-card:hover {
            border-color: rgba(140, 88, 212, 0.4);
            box-shadow: inset 3px 0 0 var(--status-stripe, transparent), inset 0 1px 0 rgba(255,255,255,0.08), 0 10px 48px rgba(140,88,212,0.14);
            transform: translateY(-2px);
        }

        .card-header {
            padding: 18px 18px 14px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            cursor: pointer;
            user-select: none;
        }

        .card-header-left {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
            min-width: 0;
        }

        .game-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: var(--accent-glow);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            flex-shrink: 0;
            overflow: hidden;
            transition: border-color 0.2s, transform 0.2s;
        }

        .game-card:hover .game-icon {
            border-color: rgba(140,88,212,0.35);
            transform: scale(1.06);
        }

        .game-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 9px;
            display: block;
        }

        .game-icon.loading {
            background: linear-gradient(90deg, var(--surface2) 25%, var(--surface) 50%, var(--surface2) 75%);
            background-size: 200% 100%;
            animation: shimmer 1.4s infinite;
        }

        @keyframes shimmer {
            0%   { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        .card-meta { flex: 1; min-width: 0; }

        .card-title {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 1px;
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .card-id { display: none; }

        .card-id-row {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .players-badge {
            font-size: 11px;
            font-weight: 500;
            color: #4ade80;
            letter-spacing: 0.01em;
        }

        /* ── Play button ── */
        .play-btn {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 4px 11px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            color: var(--accent);
            border: 1px solid rgba(140,88,212,0.35);
            background: rgba(140,88,212,0.1);
            text-decoration: none;
            transition: background 0.18s, border-color 0.18s, transform 0.18s;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .play-btn:hover {
            background: rgba(140,88,212,0.22);
            border-color: rgba(140,88,212,0.65);
            transform: translateY(-1px);
        }
        .play-btn:active { transform: translateY(0); }

        /* ── Search highlighting ── */
        .feature-item.feature-match {
            background: rgba(140,88,212,0.22);
            border-color: rgba(140,88,212,0.6);
            color: #fff;
        }
        .feature-item.feature-match .fi-dot {
            background: var(--accent);
            opacity: 1;
            box-shadow: 0 0 5px var(--accent);
        }
        .feature-item.feature-dim {
            opacity: 0.3;
        }

        /* ── Status dots ── */
        .status-dot {
            position: relative;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .status-dot.green {
            background: #4ade80;
            box-shadow: 0 0 6px 1px rgba(74,222,128,0.7);
            animation: pulse-green 2.5s ease-in-out infinite;
        }

        .status-dot.green::after {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 50%;
            border: 1.5px solid rgba(74,222,128,0.55);
            animation: ripple-ring 2.5s ease-out infinite;
        }

        @keyframes ripple-ring {
            0%   { transform: scale(0.4); opacity: 1; }
            100% { transform: scale(2.8); opacity: 0; }
        }

        .status-dot.red {
            background: #f87171;
            box-shadow: 0 0 6px 1px rgba(248,113,113,0.7);
        }

        .status-dot.yellow {
            background: #fbbf24;
            box-shadow: 0 0 6px 1px rgba(251,191,36,0.7);
        }

        @keyframes pulse-green {
            0%, 100% { box-shadow: 0 0 5px 1px rgba(74,222,128,0.7); }
            50%       { box-shadow: 0 0 10px 3px rgba(74,222,128,0.4); }
        }

        .card-right {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .feature-count {
            font-size: 11px;
            font-weight: 700;
            color: var(--accent);
            background: var(--accent-glow);
            border: 1px solid rgba(140,88,212,0.25);
            border-radius: 999px;
            padding: 2px 9px;
            white-space: nowrap;
        }

        .card-chevron {
            color: var(--muted);
            transition: transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
            flex-shrink: 0;
        }

        .game-card.open .card-chevron { transform: rotate(180deg); }

        /* ── Smooth card body ── */
        .card-body {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.32s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .game-card.open .card-body {
            grid-template-rows: 1fr;
            border-top: 1px solid var(--border);
        }

        .card-body-inner {
            overflow: hidden;
            padding: 0 18px;
        }

        .game-card.open .card-body-inner {
            padding: 0 18px 18px;
            background: rgba(10, 8, 18, 0.35);
        }

        /* ── Games count badge ── */
        .games-count-badge {
            font-size: 11px;
            font-weight: 600;
            color: var(--muted);
            background: rgba(140,88,212,0.1);
            border: 1px solid rgba(140,88,212,0.18);
            border-radius: 999px;
            padding: 2px 10px;
            margin-left: 8px;
            vertical-align: middle;
        }

        /* ── Tabs inside card ── */
        .tab-list {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            padding: 14px 0 10px;
        }

        .tab-chip {
            padding: 4px 12px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            border: 1px solid var(--border);
            background: var(--surface2);
            color: var(--muted);
            transition: all 0.15s;
            font-family: inherit;
        }

        .tab-chip.active {
            background: var(--accent-glow);
            border-color: rgba(140, 88, 212, 0.4);
            color: var(--accent);
        }

        .tab-chip:hover:not(.active) {
            color: var(--text);
            border-color: rgba(140, 88, 212, 0.25);
        }

        /* ── Feature panels ── */
        .tab-panel { display: none; }
        .tab-panel.active { display: block; }

        .feature-section { margin-bottom: 14px; }

        .feature-section-title {
            font-size: 10px;
            font-weight: 700;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 8px;
        }

        /* ── Feature pills ── */
        .feature-list {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .feature-item {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 12px;
            font-weight: 500;
            color: #c4bad6;
            padding: 4px 10px;
            border-radius: 999px;
            background: rgba(140,88,212,0.09);
            border: 1px solid rgba(140,88,212,0.18);
            transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.15s;
            cursor: default;
        }

        .feature-item:hover {
            background: rgba(140,88,212,0.2);
            border-color: rgba(140,88,212,0.4);
            color: #fff;
            transform: translateY(-1px);
        }

        .fi-dot {
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: var(--accent);
            flex-shrink: 0;
            opacity: 0.75;
        }

        /* ── Stagger animation ── */
        @keyframes stagger-in {
            from { opacity: 0; transform: translateY(5px) scale(0.95); }
            to   { opacity: 1; transform: translateY(0) scale(1); }
        }

        .feature-item.stagger-in {
            animation: stagger-in 0.22s ease both;
        }


        /* ── Toast ── */
        .copy-toast {
            position: fixed;
            bottom: 28px;
            left: 50%;
            transform: translateX(-50%) translateY(80px);
            background: rgba(24,19,42,0.95);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(140,88,212,0.3);
            border-radius: 10px;
            padding: 10px 22px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text);
            z-index: 999;
            transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s;
            pointer-events: none;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.4);
            opacity: 0;
        }

        .copy-toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

        .toast-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #4ade80;
            box-shadow: 0 0 8px rgba(74,222,128,0.8);
        }

        /* ── Footer ── */
        footer {
            position: relative;
            z-index: 1;
            border-top: 1px solid var(--border);
            padding: 28px 32px;
            text-align: center;
            color: var(--muted);
            font-size: 13px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        footer img {
            height: 20px;
            width: 20px;
            object-fit: contain;
            opacity: 0.6;
        }

        /* ── Scroll reveal ── */
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── Mobile tablet ── */
        @media (max-width: 768px) {
            nav { padding: 0 20px; }
            .nav-links a:not(.nav-cta):not(.nav-purchase) { display: none; }
            .section { padding: 0 20px 60px; }
            .stats-bar { margin: 0 20px 60px; }
            .how-grid { grid-template-columns: 1fr 1fr; }
            .search-wrap { max-width: 100%; }
        }

        @media (max-width: 480px) {
            nav { padding: 0 16px; height: 56px; }
            .nav-brand-text { font-size: 15px; }
            .nav-brand img { height: 32px; width: 32px; }
            .nav-links { gap: 10px; }
            .nav-links a:not(.nav-cta):not(.nav-purchase) { display: none; }
            .nav-purchase { font-size: 12px; padding: 5px 10px; }
            .nav-cta { font-size: 12px; padding: 6px 12px; }

            .hero { padding: 48px 16px 36px; }
            .hero-logo-wrap { width: 140px; height: 140px; border-radius: 18px; margin-bottom: 18px; }
            .hero h1 { font-size: 38px; }
            .hero p { font-size: 15px; margin-bottom: 28px; }
            .hero-actions { flex-direction: column; align-items: stretch; padding: 0 8px; }
            .btn { justify-content: center; padding: 13px 20px; }

            .stats-bar { margin: 0 16px 52px; flex-wrap: wrap; }
            .stat { flex: 1 1 33%; padding: 16px 8px; }
            .stat-value { font-size: 20px; }
            .stat-label { font-size: 10px; }

            .section { padding: 0 16px 52px; }
            .section-header h2 { font-size: 19px; }
            .how-grid { grid-template-columns: 1fr; }
            .game-grid { gap: 8px; }

            .card-header { padding: 14px 14px 12px; }
            .card-title span:last-child { font-size: 13px; }
            .feature-count { font-size: 10px; padding: 2px 7px; }
            .play-btn { display: none; }
            .game-icon { width: 38px; height: 38px; }
            .card-body-inner { padding: 0 14px; }
            .game-card.open .card-body-inner { padding: 0 14px 14px; }
            .tab-chip { font-size: 11px; padding: 3px 10px; }
            .feature-item { font-size: 11px; padding: 3px 9px; }
            footer { flex-direction: column; gap: 6px; font-size: 12px; }
            .search-wrap { max-width: 100%; display: block; }
        }

        /* ── Cursor spotlight ── */
        #cursor-glow {
            position: fixed;
            pointer-events: none;
            z-index: 0;
            width: 700px;
            height: 700px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(140,88,212,0.07) 0%, transparent 65%);
            transform: translate(-50%, -50%);
            top: 0; left: 0;
            will-change: left, top;
        }
        @media (hover: none) { #cursor-glow { display: none; } }

        /* ── Card inner surface glow ── */
        .game-card { position: relative; }
        .game-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: var(--radius);
            background: radial-gradient(
                circle at var(--mx, 50%) var(--my, 50%),
                rgba(140,88,212,0.14) 0%,
                transparent 58%
            );
            opacity: 0;
            transition: opacity 0.35s;
            pointer-events: none;
            z-index: 0;
        }
        .game-card:hover::before { opacity: 1; }
        .card-header, .card-body { position: relative; z-index: 1; }

        /* ── Click sparks ── */
        .spark {
            position: fixed;
            pointer-events: none;
            border-radius: 50%;
            background: var(--accent);
            transform: translate(-50%, -50%);
            z-index: 9999;
            animation: spark-out 0.55s ease-out forwards;
        }
        @keyframes spark-out {
            to { transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(0); opacity: 0; }
        }

        /* ── Aurora background orbs ── */
        .aurora { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
        .aurora-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(90px);
            opacity: 0.1;
            animation: aurora-drift var(--dur, 22s) ease-in-out infinite alternate;
        }
        .aurora-orb-1 { width: 600px; height: 600px; background: var(--accent);  top: -180px; left: -140px; --dur: 20s; }
        .aurora-orb-2 { width: 450px; height: 450px; background: #c084fc;        top: 40%;   right: -150px; --dur: 27s; animation-delay: -10s; }
        .aurora-orb-3 { width: 400px; height: 400px; background: #4c1d95;        bottom: 10%; left: 20%;   --dur: 23s; animation-delay: -17s; }
        @keyframes aurora-drift {
            0%   { transform: translate(0,0) scale(1); }
            33%  { transform: translate(55px,-40px) scale(1.06); }
            66%  { transform: translate(-28px,58px) scale(0.94); }
            100% { transform: translate(38px,18px) scale(1.03); }
        }

        /* ── Scroll progress bar ── */
        #scroll-progress {
            position: fixed;
            top: 0; left: 0;
            height: 2px;
            width: 0%;
            background: linear-gradient(90deg, var(--accent-dark), var(--accent), #c084fc);
            z-index: 301;
            pointer-events: none;
            will-change: width;
        }

        /* ── Back to top ── */
        #back-top {
            position: fixed;
            bottom: 32px; right: 32px;
            z-index: 200;
            width: 40px; height: 40px;
            border-radius: 10px;
            background: rgba(24,19,42,0.92);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid rgba(140,88,212,0.3);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transform: translateY(14px);
            transition: opacity 0.3s, transform 0.3s, background 0.2s, box-shadow 0.2s;
            pointer-events: none;
            outline: none;
        }
        #back-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
        #back-top:hover { background: rgba(140,88,212,0.18); box-shadow: 0 4px 24px rgba(140,88,212,0.3); }

        /* ── Active nav link ── */
        .nav-links a.nav-active { color: var(--accent) !important; }

        /* ── How-step number pop ── */
        @keyframes num-pop {
            0%   { transform: scale(0.5); opacity: 0; }
            60%  { transform: scale(1.3); }
            100% { transform: scale(1);   opacity: 1; }
        }
        .how-num.popped { animation: num-pop 0.5s cubic-bezier(0.34,1.56,0.64,1) both; }

        /* ── Search result count ── */
        .search-count {
            font-size: 12px;
            color: var(--muted);
            margin-bottom: 12px;
            min-height: 18px;
            transition: opacity 0.2s;
        }
    
        @keyframes page-in {
            from { opacity: 0; }
            to   { opacity: 1; }
        }

        /* ── Weekend banner ── */
        .weekend-banner {
            display: none;
            position: relative;
            z-index: 90;
            width: 100%;
            background: linear-gradient(90deg, rgba(140,88,212,0.18) 0%, rgba(95,46,168,0.12) 100%);
            border-bottom: 1px solid rgba(140,88,212,0.25);
            text-align: center;
            padding: 9px 16px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text);
            letter-spacing: 0.01em;
            animation: page-in 0.4s ease both;
        }
        .weekend-banner span { color: var(--accent); }
        .weekend-banner.active { display: block; }

        /* ── Hamburger ── */
        .nav-hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 36px;
            height: 36px;
            padding: 6px;
            border: none;
            background: none;
            cursor: pointer;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-hamburger:hover { background: rgba(140,88,212,0.12); }
        .nav-hamburger span {
            display: block;
            height: 2px;
            border-radius: 2px;
            background: var(--muted);
            transition: transform 0.25s, opacity 0.2s, background 0.2s;
        }
        .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--accent); }
        .nav-hamburger.open span:nth-child(2) { opacity: 0; }
        .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--accent); }

        /* ── Mobile nav drawer ── */
        .nav-drawer {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(13,11,21,0.97);
            z-index: 9000;
            padding: 80px 20px 24px;
            flex-direction: column;
            gap: 4px;
            overflow-y: auto;
            animation: page-in 0.18s ease both;
        }
        .nav-drawer.open { display: flex; }
        .nav-drawer a {
            display: block;
            padding: 11px 14px;
            border-radius: 10px;
            color: var(--muted);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: background 0.15s, color 0.15s;
        }
        .nav-drawer a:hover, .nav-drawer a.nav-active { background: rgba(140,88,212,0.1); color: var(--text); }
        .nav-drawer a.nav-purchase { color: var(--accent); }
        .nav-drawer a.nav-cta {
            margin-top: 8px;
            background: var(--accent);
            color: #fff;
            text-align: center;
            font-weight: 700;
        }
        .nav-drawer a.nav-cta:hover { background: var(--accent-dark); }

        @media (max-width: 768px) {
            .nav-hamburger { display: flex; }
            .nav-links { display: none !important; }
        }

        /* ── Status dot tooltip ── */
        .status-dot-wrap {
            position: relative;
            display: inline-flex;
        }
        .status-dot-wrap .status-tooltip {
            display: none;
            position: absolute;
            bottom: calc(100% + 8px);
            left: 50%;
            transform: translateX(-50%);
            background: rgba(24,19,34,0.97);
            border: 1px solid rgba(140,88,212,0.25);
            border-radius: 7px;
            padding: 6px 10px;
            font-size: 12px;
            font-weight: 500;
            color: var(--text);
            white-space: nowrap;
            pointer-events: none;
            z-index: 50;
        }
        .status-dot-wrap:hover .status-tooltip { display: block; }
        .status-dot-wrap .status-tooltip.yellow { color: #f5c542; }
        .status-dot-wrap .status-tooltip.red { color: #f05252; }

        /* ── Changelog page ── */
        .changelog-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
        .changelog-entry {
            background: var(--surface);
            border: 1px solid rgba(140,88,212,0.15);
            border-radius: 14px;
            overflow: hidden;
            transition: border-color 0.2s;
        }
        .changelog-entry:hover { border-color: rgba(140,88,212,0.35); }
        .changelog-entry-header {
            padding: 18px 22px 14px;
            border-bottom: 1px solid rgba(140,88,212,0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px;
        }
        .changelog-version {
            font-size: 17px;
            font-weight: 800;
            color: var(--accent);
        }
        .changelog-date {
            font-size: 12px;
            color: var(--muted);
            font-weight: 500;
        }
        .changelog-desc {
            font-size: 13px;
            color: var(--muted);
            margin: 0;
            padding: 10px 22px 0;
        }
        .changelog-sections { padding: 10px 22px 18px; display: flex; flex-direction: column; gap: 12px; }
        .changelog-section-title {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--muted);
            margin-bottom: 6px;
        }
        .changelog-items { display: flex; flex-direction: column; gap: 5px; }
        .changelog-item {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            font-size: 13.5px;
            color: var(--text);
            line-height: 1.5;
        }
        .changelog-item::before {
            content: '';
            flex-shrink: 0;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--accent);
            margin-top: 7px;
        }