        :root {
            --bg: #0a0408;
            --bg2: #120810;
            --red-dark: #3a0a0a;
            --red-mid: #5c1010;
            --gold: #c8922a;
            --gold-light: #f0c860;
            --gold-dim: #7a5518;
            --panel-bg: #1a0d08;
            --panel-border: #7a4a18;
            --text: #e8d4a8;
            --text-dim: #9a7a58;
            --text-bright: #fff0d0;
            --green: #3cb868;
            --green-glow: rgba(60,184,104,0.35);
            --danger: #f87171;
            --pixel-border: 3px;
        }

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

        body {
            background: var(--bg);
            color: var(--text);
            font-family: 'DM Sans', sans-serif;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Font Overrides */
        h1, h2, h3, h4, h5, h6, 
        .logo, .nav-link, .g-btn, 
        .stat-val, .step-num, .plan-name,
        .card-title, .card-sash, .card-badge {
            font-family: 'Cinzel', serif;
        }

        /* Pixel scrollbar */
        ::-webkit-scrollbar { width: 10px; }
        ::-webkit-scrollbar-track { background: #0a0405; border-left: 2px solid var(--gold-dim); }
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(to bottom, var(--gold), var(--gold-dim));
            border: 2px solid #0a0405;
        }

        /* ===== BACKGROUND ===== */
        #bg-canvas { position: fixed; inset: 0; z-index: -3; opacity: 0.15; }
        .bg-radial {
            position: fixed; inset: 0; z-index: -2;
            background:
                radial-gradient(ellipse 60% 50% at 50% 0%, rgba(120,10,10,0.5) 0%, transparent 70%),
                radial-gradient(ellipse 40% 30% at 20% 80%, rgba(80,5,5,0.3) 0%, transparent 60%),
                radial-gradient(ellipse 30% 40% at 80% 60%, rgba(60,5,5,0.2) 0%, transparent 50%);
        }
        .bg-vignette {
            position: fixed; inset: 0; z-index: -1; pointer-events: none;
            background: radial-gradient(circle at 50% 50%, transparent 35%, rgba(8,3,3,0.88) 100%);
        }

        /* Pixel grid overlay */
        .bg-pixels {
            position: fixed; inset: 0; z-index: -1; pointer-events: none;
            opacity: 0.03;
            background-image:
                linear-gradient(var(--gold-dim) 1px, transparent 1px),
                linear-gradient(90deg, var(--gold-dim) 1px, transparent 1px);
            background-size: 4px 4px;
        }

        /* ===== FLOATING EMBERS ===== */
        .embers { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
        .ember {
            position: absolute; width: 3px; height: 3px;
            background: var(--gold);
            box-shadow: 0 0 4px rgba(240,200,96,0.6);
            animation: ember-float linear infinite;
        }
        @keyframes ember-float {
            0% { transform: translateY(105vh) scale(1); opacity: 0; }
            10% { opacity: 0.8; }
            90% { opacity: 0.6; }
            100% { transform: translateY(-5vh) scale(0.3); opacity: 0; }
        }

        /* ===== HEADER ===== */
        header {
            position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
            background: linear-gradient(to bottom, rgba(10,4,8,0.97), rgba(10,4,8,0.85));
            border-bottom: var(--pixel-border) solid var(--gold-dim);
            box-shadow: 0 3px 0 0 rgba(0,0,0,0.8), 0 4px 20px rgba(0,0,0,0.6);
            backdrop-filter: blur(8px);
            transition: background 0.3s;
        }
        header.scrolled {
            background: rgba(10,4,8,0.98);
            box-shadow: 0 3px 0 0 rgba(0,0,0,0.9), 0 4px 30px rgba(0,0,0,0.7);
        }
        .header-inner {
            max-width: 1200px; margin: 0 auto;
            padding: 0.5rem 1.5rem;
            display: flex; justify-content: space-between; align-items: center;
            position: relative;
        }
        .logo {
            display: flex; align-items: center; gap: 0.6rem;
            text-decoration: none;
            font-size: 1.5rem;
            color: var(--gold-light);
            text-shadow: 2px 2px 0 rgba(0,0,0,0.8), 0 0 10px rgba(240,200,96,0.3);
            letter-spacing: 1px;
            transition: all 0.2s;
            z-index: 10;
        }
        .logo:hover { text-shadow: 2px 2px 0 rgba(0,0,0,0.8), 0 0 20px rgba(240,200,96,0.5); }
        .logo-icon {
            width: 32px; height: 32px;
            border: 2px solid var(--gold-dim);
            box-shadow: 2px 2px 0 rgba(0,0,0,0.8);
            object-fit: cover;
            image-rendering: pixelated;
        }

        nav { display: flex; gap: 0.3rem; align-items: center; z-index: 5; }
        @media (min-width: 868px) {
            nav {
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
            }
        }
        .nav-actions {
            display: flex;
            align-items: center;
            z-index: 10;
        }
        .nav-link {
            font-size: 1.1rem;
            color: var(--text-dim); text-decoration: none;
            padding: 0.4rem 0.6rem;
            transition: color 0.2s, text-shadow 0.2s;
            text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
        }
        .nav-link:hover {
            color: var(--gold-light);
            text-shadow: 1px 1px 0 rgba(0,0,0,0.5), 0 0 8px rgba(240,200,96,0.3);
        }

        /* 3D Pixel Game Button */
        .g-btn {
            display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
            padding: 0.5rem 1rem;
            font-size: 1.1rem;
            text-transform: uppercase; text-decoration: none; cursor: pointer;
            color: var(--gold-light);
            background: linear-gradient(to bottom, #521e16 0%, #38140e 50%, #210c08 100%);
            border: 2px solid var(--gold-dim);
            border-top-color: #c8822a;
            border-bottom-color: var(--gold-dim);
            box-shadow:
                inset 0 1px 0 rgba(240,180,80,0.35),
                inset 0 -2px 0 rgba(0,0,0,0.7);
            transition: all 0.08s;
            position: relative; top: 0;
            text-shadow: 1px 1px 0 rgba(0,0,0,0.8);
            image-rendering: pixelated;
        }
        .g-btn:hover {
            background: linear-gradient(to bottom, #6c261b 0%, #4a1a12 50%, #2f100b 100%);
            border-color: var(--gold);
            border-top-color: #e8a040;
            color: #fff;
            box-shadow:
                inset 0 1px 0 rgba(255,210,100,0.45),
                inset 0 -2px 0 rgba(0,0,0,0.75),
                0 0 15px rgba(240,200,96,0.2);
            text-shadow: 1px 1px 0 rgba(0,0,0,0.8), 0 0 6px rgba(240,200,96,0.4);
        }
        .g-btn:active {
            top: 1px;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.8), 0 0 0 rgba(0,0,0,0);
        }
        .g-btn-lg { padding: 0.65rem 1.5rem; font-size: 1.25rem; }
        .g-btn-green {
            background: linear-gradient(to bottom, #1d4d1d 0%, #133813 50%, #0b220b 100%);
            border-color: #3cb868; border-top-color: #70e070; border-bottom-color: #3cb868;
            color: #8aff8a;
            box-shadow:
                inset 0 1px 0 rgba(150,255,150,0.3),
                inset 0 -2px 0 rgba(0,0,0,0.8);
        }
        .g-btn-green:hover {
            background: linear-gradient(to bottom, #255d25 0%, #194819 50%, #0f2e0f 100%);
            border-color: #6bcf6b; color: #fff;
            box-shadow:
                inset 0 1px 0 rgba(200,255,200,0.4),
                inset 0 -2px 0 rgba(0,0,0,0.8),
                0 0 15px rgba(100,220,100,0.25);
        }

        /* ===== PAGE WRAP ===== */
        .page-wrap {
            max-width: 1100px; margin: 0 auto;
            padding: 5rem 1.5rem 2rem;
            position: relative; z-index: 1;
        }

        /* ===== PIXEL DIVIDER ===== */
        .g-divider {
            height: 3px; margin: 2.5rem 0;
            background: repeating-linear-gradient(
                90deg,
                var(--gold-dim) 0px, var(--gold-dim) 6px,
                transparent 6px, transparent 12px
            );
            opacity: 0.6;
        }

        /* ===== HERO ===== */
        .hero { text-align: center; padding: 2rem 0 1.5rem; }

        .hero-eyebrow {
            display: inline-flex; align-items: center; gap: 0.5rem;
            font-size: 1rem;
            letter-spacing: 1px; text-transform: uppercase;
            color: var(--green);
            border: 2px solid rgba(60,184,104,0.4);
            background: rgba(30,80,30,0.2);
            padding: 0.4rem 1rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 0 10px var(--green-glow), 3px 3px 0 rgba(0,0,0,0.5);
            animation: pulse-glow 2.5s ease-in-out infinite;
            text-shadow: 1px 1px 0 rgba(0,0,0,0.6);
        }
        @keyframes pulse-glow {
            0%,100% { box-shadow: 0 0 10px var(--green-glow), 3px 3px 0 rgba(0,0,0,0.5); }
            50% { box-shadow: 0 0 20px var(--green-glow), 0 0 30px rgba(60,184,104,0.15), 3px 3px 0 rgba(0,0,0,0.5); }
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5.5vw, 4.5rem);
            font-weight: 900; line-height: 1.15;
            color: var(--gold-light);
            text-shadow: 3px 3px 0 rgba(0,0,0,0.9), 0 0 30px rgba(240,200,96,0.25);
            margin-bottom: 1.25rem;
            animation: title-flicker 4s ease-in-out infinite;
        }
        @keyframes title-flicker {
            0%,100% { text-shadow: 3px 3px 0 rgba(0,0,0,0.9), 0 0 30px rgba(240,200,96,0.25); }
            50% { text-shadow: 3px 3px 0 rgba(0,0,0,0.9), 0 0 40px rgba(240,200,96,0.4), 0 0 60px rgba(240,200,96,0.15); }
        }
        .hero h1 .accent {
            color: var(--danger);
            text-shadow: 3px 3px 0 rgba(0,0,0,0.9), 0 0 20px rgba(248,113,113,0.35);
        }
        .hero-sub {
            font-size: 1.6rem; line-height: 1.4;
            color: var(--text-dim); max-width: 600px; margin: 0 auto 2rem;
        }
        .hero-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

        /* ===== GAME IMAGE ===== */
        .game-img-panel {
            position: relative; max-width: 820px; margin: 2rem auto;
            border: var(--pixel-border) solid var(--panel-border);
            box-shadow: 0 0 0 1px #000, 6px 6px 0 rgba(0,0,0,0.6), 0 12px 40px rgba(0,0,0,0.7);
            overflow: hidden;
            transition: box-shadow 0.4s, transform 0.4s;
        }
        .game-img-panel:hover {
            box-shadow: 0 0 0 1px #000, 6px 6px 0 rgba(0,0,0,0.6), 0 0 25px rgba(200,146,42,0.1);
            transform: translateY(-3px);
        }
        .game-hero-bg {
            width: 100%; display: block;
            filter: brightness(0.5) saturate(0.8);
            transition: filter 0.5s;
            image-rendering: auto;
        }
        .game-img-panel:hover .game-hero-bg { filter: brightness(0.62) saturate(0.9); }
        .game-logo-overlay {
            position: absolute; left: 4%; bottom: 18%;
            width: 45%; max-height: 70%; object-fit: contain;
            filter: drop-shadow(0 4px 12px rgba(0,0,0,0.95)) drop-shadow(0 0 20px rgba(240,200,96,0.15));
            z-index: 2; pointer-events: none;
            transition: transform 0.4s;
        }
        .game-img-panel:hover .game-logo-overlay { transform: scale(1.03); }
        .game-img-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(10,4,8,0.97) 0%, rgba(10,4,8,0.3) 50%, transparent 100%);
            display: flex; flex-direction: column; justify-content: flex-end;
            padding: 1.5rem;
        }
        .game-img-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
        .game-img-tag {
            font-size: 1rem;
            color: var(--gold-light);
            background: rgba(0,0,0,0.7); border: 1px solid var(--gold-dim);
            padding: 0.25rem 0.5rem;
            display: inline-flex; align-items: center; gap: 0.3rem;
            text-shadow: 1px 1px 0 rgba(0,0,0,0.8);
            box-shadow: 2px 2px 0 rgba(0,0,0,0.5);
        }

        /* ===== STATS ===== */
        .stats-bar {
            display: grid; grid-template-columns: repeat(4, 1fr);
            margin: 2rem 0;
            border: var(--pixel-border) solid var(--panel-border);
            box-shadow: 0 0 0 1px #000, 4px 4px 0 rgba(0,0,0,0.5);
            overflow: hidden;
        }
        .stat-item {
            padding: 1.25rem 0.5rem; text-align: center;
            background: linear-gradient(180deg, #1e0f07, #150b05);
            border-right: 2px solid rgba(122,74,24,0.3);
            transition: background 0.3s;
        }
        .stat-item:last-child { border-right: none; }
        .stat-item:hover { background: linear-gradient(180deg, #261407, #1a0e06); }
        .stat-val {
            font-size: 2.2rem;
            color: var(--gold-light);
            text-shadow: 2px 2px 0 rgba(0,0,0,0.8), 0 0 10px rgba(240,200,96,0.25);
            line-height: 1.2;
        }
        .stat-lbl {
            font-size: 0.9rem;
            color: var(--text-dim); text-transform: uppercase;
            letter-spacing: 1px; margin-top: 0.35rem;
            text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
        }

        /* ===== SECTION HEADER ===== */
        .section-header {
            text-align: center; margin: 2.5rem 0 1.5rem;
        }
        .section-header h2 {
            font-size: 2.2rem; color: var(--gold-light);
            text-shadow: 2px 2px 0 rgba(0,0,0,0.8), 0 0 12px rgba(240,200,96,0.25);
            letter-spacing: 2px;
        }
        .section-header p {
            font-size: 1.4rem; color: var(--text-dim); margin-top: 0.4rem;
        }

        /* ===== CHEAT GRID ===== */
        .cheat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 0.85rem; margin-bottom: 2rem;
        }
        .cheat-tile {
            background: linear-gradient(180deg, #1e0f07, #130904);
            border: 2px solid rgba(122,74,24,0.5);
            padding: 1.2rem;
            position: relative; overflow: hidden;
            box-shadow: 3px 3px 0 rgba(0,0,0,0.5);
            transition: all 0.25s;
        }
        .cheat-tile::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
            background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
        }
        .cheat-tile::after {
            content: ''; position: absolute; bottom: 0; right: 0;
            width: 6px; height: 6px;
            background: var(--gold-dim); opacity: 0.5;
        }
        .cheat-tile:hover {
            border-color: var(--gold-dim);
            box-shadow: 3px 3px 0 rgba(0,0,0,0.5), 0 0 15px rgba(200,146,42,0.08);
            transform: translateY(-4px) translateX(-1px);
        }
        .cheat-tile-icon {
            font-size: 2rem; margin-bottom: 0.65rem;
            text-shadow: 0 0 8px currentColor, 2px 2px 0 rgba(0,0,0,0.5);
            transition: text-shadow 0.3s, filter 0.3s;
        }
        .cheat-tile:hover .cheat-tile-icon {
            text-shadow: 0 0 20px currentColor, 2px 2px 0 rgba(0,0,0,0.5);
            filter: brightness(1.25);
        }
        .cheat-tile h3 {
            font-size: 1.5rem; font-weight: 700;
            color: var(--gold-light); margin-bottom: 0.35rem;
            text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
        }
        .cheat-tile p { font-size: 1.2rem; color: var(--text-dim); line-height: 1.3; }

        .cheat-badge {
            display: inline-flex; align-items: center; gap: 0.3rem;
            margin-top: 0.65rem;
            font-size: 1.1rem;
            letter-spacing: 0.5px; text-transform: uppercase;
            padding: 0.2rem 0.6rem;
            text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
            box-shadow: 2px 2px 0 rgba(0,0,0,0.4);
            border-radius: 4px !important; /* FIXED: rounded edges, removed the boxy pixel look slightly */
        }
        /* FIXED: Removed the ::before pixel dots entirely */
        .tb-green { background: rgba(30,80,30,0.5); color: #6bcf6b; border: 1px solid rgba(60,184,104,0.4); }
        .tb-gold { background: rgba(80,50,10,0.5); color: var(--gold); border: 1px solid rgba(200,146,42,0.4); }
        .tb-red { background: rgba(80,10,10,0.5); color: #f87171; border: 1px solid rgba(248,113,113,0.4); }

        /* ===== PARADISE ===== */
        .paradise-grid {
            display: grid; grid-template-columns: 1.2fr 0.8fr;
            margin-bottom: 2rem;
        }
        .paradise-info {
            background: linear-gradient(160deg, #1e0f07, #150b05);
            border: var(--pixel-border) solid var(--panel-border);
            border-right: 1px solid rgba(122,74,24,0.3);
            padding: 2rem;
            box-shadow: -4px 4px 0 rgba(0,0,0,0.4);
        }
        .paradise-info h2 {
            font-size: 2rem; color: var(--gold-light);
            text-shadow: 2px 2px 0 rgba(0,0,0,0.8), 0 0 10px rgba(240,200,96,0.2);
            margin-bottom: 0.75rem;
        }
        .paradise-info h2 .hl {
            color: var(--green);
            text-shadow: 2px 2px 0 rgba(0,0,0,0.8), 0 0 10px var(--green-glow);
        }
        .paradise-info > p {
            color: var(--text-dim); font-size: 1.3rem;
            line-height: 1.4; margin-bottom: 1.25rem;
        }
        .p-features { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
        .p-features li {
            display: flex; align-items: center; gap: 0.6rem;
            font-size: 1.2rem; color: var(--text);
        }
        .p-features li i {
            color: var(--green); font-size: 1rem;
            text-shadow: 0 0 6px var(--green-glow);
            width: 16px; text-align: center;
        }

        .paradise-action {
            background: linear-gradient(135deg, rgba(20,50,20,0.3), rgba(30,15,5,0.5));
            border: var(--pixel-border) solid var(--panel-border);
            border-left: none;
            padding: 2rem 1.5rem;
            display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            text-align: center;
            box-shadow: 4px 4px 0 rgba(0,0,0,0.4);
        }
        .par-icon {
            font-size: 2.5rem; color: var(--gold-light);
            text-shadow: 2px 2px 0 rgba(0,0,0,0.8), 0 0 20px rgba(240,200,96,0.3);
            margin-bottom: 1rem;
            animation: crown-bob 3s ease-in-out infinite;
        }
        @keyframes crown-bob {
            0%,100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        .paradise-action h3 {
            font-size: 1.6rem; font-weight: 700;
            color: var(--gold-light); margin-bottom: 0.5rem;
            text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
        }
        .paradise-action > p {
            font-size: 1.2rem; color: var(--text-dim);
            line-height: 1.3; margin-bottom: 1.25rem;
        }
        .paradise-action .g-btn { width: 100%; margin-bottom: 0.5rem; }
        .par-link {
            font-size: 1.1rem;
            color: var(--text-dim); text-decoration: none;
            text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
            transition: color 0.2s;
        }
        .par-link:hover { color: var(--gold-light); }

        /* ===== STEPS ===== */
        .steps-grid {
            display: grid; grid-template-columns: repeat(3, 1fr);
            gap: 0.85rem; margin-bottom: 2rem;
            position: relative;
        }
        .steps-grid::before {
            content: ''; position: absolute;
            top: 30px; left: 15%; right: 15%; height: 3px;
            background: repeating-linear-gradient(90deg, var(--gold-dim) 0px, var(--gold-dim) 4px, transparent 4px, transparent 8px);
            opacity: 0.4;
        }
        .step-card {
            background: linear-gradient(180deg, #1e0f07, #150b05);
            border: 2px solid rgba(122,74,24,0.4);
            padding: 1.5rem 1rem;
            text-align: center; position: relative; z-index: 1;
            box-shadow: 3px 3px 0 rgba(0,0,0,0.5);
            transition: all 0.3s;
        }
        .step-card:hover {
            border-color: var(--gold-dim);
            transform: translateY(-5px) translateX(-1px);
            box-shadow: 5px 5px 0 rgba(0,0,0,0.5), 0 0 12px rgba(200,146,42,0.08);
        }
        .step-num {
            width: 38px; height: 38px;
            background: linear-gradient(135deg, var(--gold-dim), #4a2508);
            border: 2px solid var(--gold-dim);
            color: var(--gold-light);
            font-size: 1.4rem;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 1rem;
            box-shadow: 2px 2px 0 rgba(0,0,0,0.6), 0 0 8px rgba(200,146,42,0.2);
            text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
            transition: all 0.3s;
        }
        .step-card:hover .step-num {
            box-shadow: 2px 2px 0 rgba(0,0,0,0.6), 0 0 18px rgba(200,146,42,0.35);
            transform: scale(1.1);
        }
        .step-card h4 {
            font-size: 1.5rem; font-weight: 700;
            color: var(--gold-light); margin-bottom: 0.4rem;
            text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
        }
        .step-card p { font-size: 1.2rem; color: var(--text-dim); line-height: 1.3; }

        /* ===== FAQ ===== */
        .faq-grid { 
            display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem;
        }
        .faq-item {
            background: linear-gradient(180deg, #1e0f07, #130904);
            border: 2px solid rgba(122,74,24,0.4);
            overflow: hidden;
            box-shadow: 3px 3px 0 rgba(0,0,0,0.4);
            transition: border-color 0.3s;
        }
        .faq-item:hover { border-color: var(--gold-dim); }
        .faq-q {
            padding: 0.9rem 1.1rem;
            display: flex; justify-content: space-between; align-items: center;
            cursor: pointer; user-select: none;
        }
        .faq-q span {
            font-size: 1.4rem; font-weight: 700;
            color: var(--gold-light); text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
            transition: color 0.2s;
        }
        .faq-q:hover span { color: var(--text-bright); }
        .faq-q i { color: var(--gold-dim); font-size: 1.1rem; transition: transform 0.3s, color 0.3s; }
        .faq-item.open .faq-q i::before { content: "\f068"; }
        .faq-item.open .faq-q i { transform: rotate(180deg); color: var(--gold-light); }
        .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
        .faq-item.open .faq-a { max-height: 200px; }
        .faq-a-inner {
            padding: 0 1.1rem 1rem;
            font-size: 1.2rem; color: var(--text-dim); line-height: 1.4;
            border-top: 2px solid rgba(122,74,24,0.2); padding-top: 0.75rem;
        }

        /* ===== CTA ===== */
        .cta-final {
            text-align: center; padding: 2.5rem 1.5rem;
            background: linear-gradient(160deg, #1e0f07, #150b05);
            border: var(--pixel-border) solid var(--panel-border);
            box-shadow: 0 0 0 1px #000, 5px 5px 0 rgba(0,0,0,0.5);
            margin-bottom: 2rem;
            position: relative; overflow: hidden;
        }
        /* Pixel corners */
        .cta-final::before, .cta-final::after {
            content: ''; position: absolute; width: 6px; height: 6px;
            background: var(--gold-dim);
        }
        .cta-final::before { top: 4px; left: 4px; box-shadow: calc(100% - 14px) 0 0 var(--gold-dim); }
        .cta-final::after { bottom: 4px; left: 4px; box-shadow: calc(100% - 14px) 0 0 var(--gold-dim); }
        .cta-final h2 {
            font-size: 2rem; color: var(--gold-light);
            text-shadow: 2px 2px 0 rgba(0,0,0,0.8), 0 0 10px rgba(240,200,96,0.2);
            margin-bottom: 0.5rem;
        }
        .cta-final p {
            font-size: 1.4rem; color: var(--text-dim);
            max-width: 380px; margin: 0 auto 1.25rem;
        }

        /* ===== FOOTER ===== */
        footer {
            border-top: var(--pixel-border) solid var(--gold-dim);
            padding: 1.25rem 0;
            position: relative; z-index: 1;
            box-shadow: 0 -3px 0 rgba(0,0,0,0.5);
        }
        .ft-inner {
            max-width: 1100px; margin: 0 auto; padding: 0 1.5rem;
            display: flex; justify-content: space-between; align-items: center;
        }
        .ft-left { font-size: 1.1rem; color: var(--text-dim); }
        .ft-left a { color: var(--gold-dim); text-decoration: none; }
        .ft-left a:hover { color: var(--gold-light); }
        .ft-brand {
            font-size: 1.1rem; color: var(--gold-light);
            text-shadow: 1px 1px 0 rgba(0,0,0,0.8);
        }
        .ft-right { display: flex; gap: 1rem; }
        .ft-right a {
            font-size: 0.9rem;
            color: var(--text-dim); text-decoration: none;
            text-transform: uppercase; letter-spacing: 0.5px;
            text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
            transition: color 0.2s;
        }
        .ft-right a:hover { color: var(--gold-light); }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 900px) {
            .cheat-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
        }
        @media (max-width: 768px) {
            .header-inner { padding: 0.5rem 0.75rem; }
            .nav-link { display: none; }
            .logo { font-size: 1.2rem; }
            .stats-bar { grid-template-columns: repeat(2,1fr); }
            .stat-item { border-right: 2px solid rgba(122,74,24,0.3); border-bottom: 2px solid rgba(122,74,24,0.3); }
            .stat-item:nth-child(2) { border-right: none; }
            .stat-item:nth-child(4) { border-right: none; }
            .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
            .paradise-grid { grid-template-columns: 1fr; }
            .paradise-info { border-right: var(--pixel-border) solid var(--panel-border); border-bottom: none; }
            .paradise-action { border-left: var(--pixel-border) solid var(--panel-border); border-top: 1px solid rgba(122,74,24,0.3); }
            .steps-grid { grid-template-columns: 1fr; }
            .steps-grid::before { display: none; }
            .faq-grid { grid-template-columns: 1fr; }
            .ft-inner { flex-direction: column; gap: 0.75rem; text-align: center; }
            .ft-right { flex-wrap: wrap; justify-content: center; }
            .hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
            .hero-sub { font-size: 1.3rem; padding: 0 0.5rem; }
            .game-img-panel { height: 220px; }
            .game-hero-bg { height: 100%; object-fit: cover; }
            .game-logo-overlay { width: 38%; bottom: 28%; }
            .game-img-overlay { padding: 0.75rem; }
        }
        @media (max-width: 480px) {
            .page-wrap { padding: 4.5rem 0.75rem 1.5rem; }
            .cheat-grid { grid-template-columns: 1fr; }
            .hero-btns { flex-direction: column; align-items: stretch; }
            .hero-btns .g-btn { width: 100%; }
            .hero-eyebrow { font-size: 0.8rem; padding: 0.35rem 0.7rem; }
            .stat-val { font-size: 1.8rem; }
            .stat-lbl { font-size: 0.7rem; }
            .game-img-tags { gap: 0.25rem; }
            .game-img-tag { font-size: 0.75rem !important; padding: 0.15rem 0.3rem; }
            .game-img-panel { height: 160px; }
            .game-hero-bg { height: 100%; object-fit: cover; }
            .game-logo-overlay { width: 35%; bottom: 32%; left: 4%; }
            .game-img-overlay { padding: 0.5rem; }
        }

        /* Modern Aesthetics Overrides */
        .logo-icon, .g-btn { image-rendering: auto; }
        .logo-icon { border-radius: 4px; }
        .g-btn { border-radius: 6px; }
        .game-img-panel { border-radius: 8px; }
        .game-hero-bg { border-radius: 8px 8px 0 0; }
        .stats-bar { border-radius: 8px; }
        .cheat-tile { border-radius: 8px; }
        .paradise-info { border-radius: 8px 0 0 8px; }
        .paradise-action { border-radius: 0 8px 8px 0; }
        .step-card { border-radius: 8px; }
        .faq-item { border-radius: 6px; }

        @media (max-width: 768px) {
            .paradise-info { border-radius: 8px 8px 0 0; }
            .paradise-action { border-radius: 0 0 8px 8px; }
        }

        /* ===== COMPARISON SECTION ===== */
        .compare-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 1000px;
            margin: 2rem auto;
        }

        .compare-card {
            background: linear-gradient(135deg, #120810 0%, #070306 100%);
            border: 2px solid var(--panel-border);
            padding: 2.5rem 2rem;
            position: relative;
            box-shadow: 6px 6px 0 rgba(0,0,0,0.6);
            transition: all 0.3s var(--ease);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
            border-radius: 8px;
        }

        .compare-card:hover {
            transform: translateY(-5px);
        }

        .compare-card-free {
            border-color: rgba(60, 184, 104, 0.4);
            background: linear-gradient(135deg, #051a0e 0%, #020a05 100%);
            box-shadow: 6px 6px 0 rgba(0,0,0,0.6), 0 0 25px rgba(60, 184, 104, 0.08);
        }
        .compare-card-free:hover {
            border-color: var(--green);
            box-shadow: 6px 6px 0 rgba(0,0,0,0.6), 0 0 35px rgba(60, 184, 104, 0.15);
        }

        .compare-card-premium {
            border-color: rgba(200, 146, 42, 0.4);
            background: linear-gradient(135deg, #1d1107 0%, #0c0703 100%);
            box-shadow: 6px 6px 0 rgba(0,0,0,0.6), 0 0 25px rgba(200, 146, 42, 0.08);
        }
        .compare-card-premium:hover {
            border-color: var(--gold);
            box-shadow: 6px 6px 0 rgba(0,0,0,0.6), 0 0 35px rgba(200, 146, 42, 0.18);
        }

        .card-header {
            margin-bottom: 1.5rem;
            position: relative;
        }

        .card-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            padding: 0.35rem 0.75rem;
            border-radius: 4px;
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
            box-shadow: 2px 2px 0 rgba(0,0,0,0.3);
        }

        .compare-card-free .card-badge {
            background: rgba(60, 184, 104, 0.15);
            color: #6bcf6b;
            border: 1px solid rgba(60, 184, 104, 0.3);
        }

        .compare-card-premium .card-badge {
            background: rgba(200, 146, 42, 0.15);
            color: var(--gold-light);
            border: 1px solid rgba(200, 146, 42, 0.3);
        }

        .card-title {
            font-size: 1.7rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 0 rgba(0,0,0,0.8);
        }

        .compare-card-free .card-title {
            color: #6bcf6b;
        }

        .compare-card-premium .card-title {
            color: var(--gold-light);
            text-shadow: 2px 2px 0 rgba(0,0,0,0.8), 0 0 15px rgba(240, 200, 96, 0.25);
        }

        .card-desc {
            font-size: 0.95rem;
            color: var(--text-dim);
            line-height: 1.4;
        }

        .card-divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.06);
            margin: 1.5rem 0;
        }

        .compare-card-free .card-divider {
            background: rgba(60, 184, 104, 0.12);
        }

        .compare-card-premium .card-divider {
            background: rgba(200, 146, 42, 0.12);
        }

        .card-features {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            margin-bottom: 2.5rem;
            flex-grow: 1;
        }

        .card-feature-meta {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1rem;
            color: var(--text-bright);
            padding-bottom: 0.5rem;
            font-weight: 600;
        }
        
        .card-feature-meta i {
            color: var(--green);
            font-size: 1.15rem;
        }

        .card-feature {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .feature-icon-wrapper {
            font-size: 1.3rem;
            width: 24px;
            text-align: center;
            margin-top: 0.15rem;
            filter: drop-shadow(2px 2px 0 rgba(0,0,0,0.5));
        }

        .compare-card-free .feature-icon-wrapper {
            color: #6bcf6b;
        }

        .compare-card-premium .feature-icon-wrapper {
            color: var(--gold-light);
        }

        .feature-content {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }

        .feature-content h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-bright);
            letter-spacing: 0.5px;
            text-shadow: 1px 1px 0 rgba(0,0,0,0.6);
        }

        .compare-card-free .feature-content h4 {
            color: #8eff8a;
        }

        .compare-card-premium .feature-content h4 {
            color: var(--gold-light);
        }

        .feature-content p {
            font-size: 0.9rem;
            color: var(--text-dim);
            line-height: 1.35;
        }

        .badge-accent {
            color: var(--gold);
            font-weight: 500;
            font-size: 0.8rem;
            display: block;
            margin-top: 0.15rem;
        }

        .card-action {
            margin-top: auto;
        }

        .card-sash {
            position: absolute;
            top: 22px;
            right: -42px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
            color: #000;
            font-weight: 900;
            font-size: 0.8rem;
            letter-spacing: 1px;
            padding: 0.35rem 3rem;
            transform: rotate(45deg);
            box-shadow: 0 2px 4px rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.15);
        }

        @media (max-width: 868px) {
            .compare-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        /* ===== GENERAL SITE FONT SIZE REDUCTIONS ===== */
        .logo { font-size: 1.25rem !important; }
        .nav-link { font-size: 0.95rem !important; }
        .g-btn { font-size: 0.95rem !important; }
        .g-btn-lg { font-size: 1.1rem !important; }
        
        .hero h1 { font-size: clamp(2rem, 4.5vw, 3.8rem) !important; }
        .hero-sub { font-size: 1.25rem !important; }
        .hero-eyebrow { font-size: 0.85rem !important; }
        
        .stat-val { font-size: 1.8rem !important; }
        .stat-lbl { font-size: 0.8rem !important; }
        
        .section-header h2 { font-size: 1.8rem !important; }
        .section-header p { font-size: 1.15rem !important; }
        
        .cheat-tile h3 { font-size: 1.25rem !important; }
        .cheat-tile p { font-size: 1.05rem !important; }
        .cheat-badge { font-size: 0.95rem !important; }
        
        .paradise-info h2 { font-size: 1.6rem !important; }
        .paradise-info > p { font-size: 1.1rem !important; }
        .p-features li { font-size: 1.05rem !important; }
        .paradise-action h3 { font-size: 1.35rem !important; }
        .paradise-action > p { font-size: 1.05rem !important; }
        .par-link { font-size: 0.95rem !important; }
        
        .step-card h4 { font-size: 1.25rem !important; }
        .step-card p { font-size: 1.05rem !important; }
        .step-num { font-size: 1.1rem !important; width: 32px !important; height: 32px !important; }
        
        .faq-q span { font-size: 1.15rem !important; }
        .faq-a-inner { font-size: 1.05rem !important; }
        .faq-q i { font-size: 0.95rem !important; }
        
        .ft-inner { font-size: 0.95rem !important; }
        .ft-right a { font-size: 0.95rem !important; }
        .ft-brand { font-size: 1.15rem !important; }

        /* ===== UNLIMITED CARD ===== */
        .compare-card-unlimited {
            border-color: rgba(122, 74, 255, 0.4);
            background: linear-gradient(135deg, #1a0a3a 0%, #0a052a 100%);
            box-shadow: 6px 6px 0 rgba(0,0,0,0.6), 0 0 25px rgba(122, 74, 255, 0.08);
        }
        .compare-card-unlimited:hover {
            border-color: #7a4aff;
            box-shadow: 6px 6px 0 rgba(0,0,0,0.6), 0 0 35px rgba(122, 74, 255, 0.18);
        }
        .compare-card-unlimited .card-badge {
            background: rgba(122, 74, 255, 0.15);
            color: #b080ff;
            border: 1px solid rgba(122, 74, 255, 0.3);
        }
        .compare-card-unlimited .card-title {
            color: #b080ff;
            text-shadow: 2px 2px 0 rgba(0,0,0,0.8), 0 0 15px rgba(180, 140, 255, 0.25);
        }
        .compare-card-unlimited .card-divider {
            background: rgba(122, 74, 255, 0.12);
        }
        .compare-card-unlimited .feature-icon-wrapper {
            color: #b080ff;
        }
        .compare-card-unlimited .feature-content h4 {
            color: #d0c0ff;
        }
        .compare-card-unlimited .card-sash {
            background: linear-gradient(135deg, #7a4aff 0%, #4a2aaa 100%);
        }

        @media (max-width: 1100px) {
            .compare-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        /* ===== UNLIMITED DIVIDER ===== */
        .unlimited-divider {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin: 0.5rem 0;
        }
        .unlimited-divider::before,
        .unlimited-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: rgba(122, 74, 255, 0.3);
        }
        .unlimited-divider span {
            font-family: 'Cinzel', serif;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #b080ff;
            text-shadow: 0 0 8px rgba(180, 140, 255, 0.3);
            white-space: nowrap;
        }

        /* ===== UNLIMITED FEATURE ITEMS ===== */
        .card-feature-unlimited .feature-icon-wrapper {
            color: #b080ff !important;
        }
        .card-feature-unlimited .feature-content h4 {
            color: #d0c0ff !important;
        }
        .card-feature-unlimited .feature-content p {
            color: #a090cc;
        }