        :root {
            --bg-main: #f8fafc;
            --surface: #ffffff;
            --primary: #6366f1;
            --primary-dark: #4f46e5;
            --primary-light: #eef2ff;
            --dark: #0f172a;
            --slate: #475569;
            --muted: #64748b;
            --border: #e2e8f0;
            --gold: #f59e0b;
            --green: #10b981;
            --green-dark: #059669;
            --radius-lg: 16px;
            --radius-md: 12px;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: var(--bg-main);
            color: var(--dark);
            line-height: 1.5;
            padding-bottom: 90px;
        }

        a { text-decoration: none; color: inherit; }

        .container {
            width: 100%;
            max-width: 820px;
            margin: 0 auto;
            padding: 0 14px;
        }

        /* --- Header --- */
        .site-nav {
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border);
            padding: 10px 16px;
        }

        .nav-wrap {
            max-width: 820px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 17px;
            color: var(--dark);
            font-family: 'Outfit', sans-serif;
        }

        .brand-logo img {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            box-shadow: var(--shadow-sm);
        }

        .nav-btns {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-tele-top {
            background: #229ed9;
            color: #fff;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        /* --- Quick Category Pills --- */
        .category-scroll {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            scrollbar-width: none;
            padding: 14px 0 6px 0;
        }

        .category-scroll::-webkit-scrollbar { display: none; }

        .cat-pill {
            background: var(--surface);
            border: 1px solid var(--border);
            padding: 7px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: var(--slate);
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .cat-pill.active {
            background: var(--dark);
            color: #fff;
            border-color: var(--dark);
        }

        /* --- Hero Showcase --- */
        .hero-banner {
            background: linear-gradient(135deg, #1e1b4b 0%, #312e81 60%, #4338ca 100%);
            border-radius: 20px;
            padding: 22px 18px;
            margin: 10px 0 16px 0;
            color: #fff;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(49, 46, 129, 0.25);
        }

        .hero-top {
            display: flex;
            gap: 14px;
            align-items: center;
            margin-bottom: 14px;
        }

        .hero-img {
            width: 76px;
            height: 76px;
            border-radius: 16px;
            border: 2px solid rgba(255,255,255,0.2);
            box-shadow: 0 8px 16px rgba(0,0,0,0.3);
            flex-shrink: 0;
        }

        .hero-info h1 {
            font-size: 20px;
            font-weight: 800;
            font-family: 'Outfit', sans-serif;
            line-height: 1.2;
            margin-bottom: 3px;
        }

        .hero-info p {
            font-size: 12.5px;
            color: #c7d2fe;
        }

        .bonus-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(16, 185, 129, 0.2);
            border: 1px solid #10b981;
            color: #34d399;
            padding: 4px 10px;
            border-radius: 8px;
            font-size: 11.5px;
            font-weight: 700;
            margin-top: 6px;
        }

        .hero-btns {
            display: grid;
            grid-template-columns: 1fr;
            gap: 8px;
            margin-top: 10px;
        }

        .btn-hero-dl {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: #ffffff;
            font-size: 14px;
            font-weight: 800;
            padding: 12px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
            border: none;
            cursor: pointer;
        }

        /* --- Stats Row --- */
        .stats-strip {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 12px 6px;
            margin-bottom: 18px;
            text-align: center;
            box-shadow: var(--shadow-sm);
        }

        .stat-item i {
            font-size: 15px;
            color: var(--primary);
            margin-bottom: 2px;
        }

        .stat-val { font-size: 13px; font-weight: 800; color: var(--dark); }
        .stat-lbl { font-size: 10px; color: var(--muted); }

        /* --- Section Titles --- */
        .block-title {
            font-family: 'Outfit', sans-serif;
            font-size: 16px;
            font-weight: 800;
            color: var(--dark);
            margin: 22px 0 12px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .block-title span {
            font-size: 12px;
            font-weight: 600;
            color: var(--primary);
        }

        /* ========================================================
           DESIGN STYLE 1: TOP 3 FEATURED HERO TILES (Gradient)
           ======================================================== */
        .style1-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .card-style1 {
            background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 14px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: var(--shadow-sm);
            position: relative;
            overflow: hidden;
        }

        .card-style1::before {
            content: "FEATURED";
            position: absolute;
            top: 8px;
            right: -25px;
            background: var(--gold);
            color: #fff;
            font-size: 8px;
            font-weight: 800;
            padding: 2px 25px;
            transform: rotate(45deg);
        }

        .style1-img {
            width: 58px;
            height: 58px;
            border-radius: 14px;
            background-size: cover;
            background-position: center;
            flex-shrink: 0;
            border: 1px solid rgba(0,0,0,0.08);
        }

        .style1-info { flex: 1; min-width: 0; }
        .style1-info h3 { font-size: 14.5px; font-weight: 800; margin-bottom: 2px; }
        .style1-info p { font-size: 11.5px; color: var(--muted); }
        .style1-bonus { font-size: 11px; color: var(--green-dark); font-weight: 700; }

        .btn-style1 {
            background: var(--dark);
            color: #fff;
            padding: 8px 14px;
            border-radius: 10px;
            font-size: 12px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* ========================================================
           DESIGN STYLE 2: 2-COLUMN APP STORE BOXES (Modern Grid)
           ======================================================== */
        .style2-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .card-style2 {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            box-shadow: var(--shadow-sm);
        }

        .style2-img {
            width: 54px;
            height: 54px;
            border-radius: 12px;
            background-size: cover;
            background-position: center;
            margin-bottom: 8px;
            border: 1px solid var(--border);
        }

        .card-style2 h3 {
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 2px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            width: 100%;
        }

        .card-style2 p { font-size: 11px; color: var(--muted); margin-bottom: 6px; }
        .style2-bonus {
            background: var(--primary-light);
            color: var(--primary-dark);
            font-size: 10.5px;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 6px;
            margin-bottom: 10px;
            width: 100%;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .btn-style2 {
            width: 100%;
            background: var(--green);
            color: #fff;
            padding: 7px;
            border-radius: 8px;
            font-size: 11.5px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
        }

        /* ========================================================
           DESIGN STYLE 3: EDITOR'S CHOICE COMPACT LIST (Verified)
           ======================================================== */
        .style3-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .card-style3 {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 10px 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .style3-left {
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 0;
        }

        .style3-img {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background-size: cover;
            background-position: center;
            flex-shrink: 0;
        }

        .style3-info h3 {
            font-size: 13.5px;
            font-weight: 700;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .style3-tags {
            display: flex;
            gap: 6px;
            align-items: center;
            font-size: 11px;
        }

        .tag-verified { color: var(--primary); font-weight: 600; }
        .tag-cash { color: var(--green-dark); font-weight: 700; }

        .btn-style3 {
            background: #f1f5f9;
            color: var(--dark);
            border: 1px solid var(--border);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 11.5px;
            font-weight: 700;
            flex-shrink: 0;
        }

        /* ========================================================
           DESIGN STYLE 4: HIGH BONUS JACKPOT ROW (Dark/Gold Look)
           ======================================================== */
        .style4-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
        }

        .card-style4 {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            border: 1px solid #334155;
            color: #fff;
            border-radius: 14px;
            padding: 12px 14px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .style4-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .style4-img {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            border: 1.5px solid var(--gold);
            background-size: cover;
            background-position: center;
            flex-shrink: 0;
        }

        .style4-info h3 { font-size: 14px; font-weight: 700; color: #fff; }
        .style4-info p { font-size: 11px; color: #94a3b8; }
        .style4-bonus { color: var(--gold); font-size: 11px; font-weight: 700; }

        .btn-style4 {
            background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
            color: #0f172a;
            padding: 8px 14px;
            border-radius: 8px;
            font-size: 11.5px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 4px;
            flex-shrink: 0;
        }

        /* ========================================================
           DESIGN STYLE 5: CLASSIC STORE ROW WITH RANKING
           ======================================================== */
        .style5-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .card-style5 {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 10px 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .style5-rank {
            font-size: 13px;
            font-weight: 800;
            color: var(--muted);
            width: 18px;
            text-align: center;
        }

        .style5-img {
            width: 46px;
            height: 46px;
            border-radius: 10px;
            background-size: cover;
            background-position: center;
            flex-shrink: 0;
        }

        .style5-info { flex: 1; min-width: 0; }
        .style5-info h3 { font-size: 13px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .style5-info p { font-size: 10.5px; color: var(--muted); }
        .style5-bonus { font-size: 10.5px; color: var(--green-dark); font-weight: 600; }

        .btn-style5 {
            background: var(--primary);
            color: #fff;
            padding: 7px 12px;
            border-radius: 8px;
            font-size: 11px;
            font-weight: 700;
            flex-shrink: 0;
        }

        /* --- Informational Accordions & Specs --- */
        .content-box {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 16px;
            margin-top: 14px;
        }

        .content-box h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 15.5px;
            font-weight: 800;
            margin-bottom: 8px;
            color: var(--dark);
        }

        .content-box p {
            font-size: 12.5px;
            color: var(--slate);
            line-height: 1.6;
            margin-bottom: 8px;
        }

        .cwa-item { border-bottom: 1px solid var(--border); }
        .cwa-item:last-child { border-bottom: none; }
        .cwa-header {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            background: transparent;
            border: none;
            cursor: pointer;
            font-size: 13px;
            font-weight: 700;
            color: var(--dark);
            text-align: left;
        }

        .cwa-header i { transition: transform 0.3s ease; color: var(--primary); }
        .cwa-header.active i { transform: rotate(180deg); }

        .cwa-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease-out;
            color: var(--slate);
            font-size: 12.5px;
        }

        .cwa-inner { padding-bottom: 10px; }
        .cwa-list { padding-left: 18px; }
        .cwa-list li { margin-bottom: 4px; }

        .sys-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 12.5px;
            margin-top: 6px;
        }

        .sys-table td {
            padding: 7px 0;
            border-bottom: 1px solid var(--border);
            color: var(--slate);
        }

        .sys-table td:last-child {
            text-align: right;
            font-weight: 700;
            color: var(--dark);
        }

        /* --- Player Reviews Slider --- */
        .reviews-slider {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding-bottom: 6px;
            scrollbar-width: none;
            margin-top: 8px;
        }

        .reviews-slider::-webkit-scrollbar { display: none; }

        .review-box {
            flex: 0 0 240px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 12px;
            font-size: 12px;
        }

        .review-stars { color: var(--gold); font-size: 10px; margin-bottom: 4px; }
        .reviewer-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 8px;
            border-top: 1px solid var(--border);
            padding-top: 6px;
        }

        .reviewer-avatar {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            font-size: 9px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* --- Warnings --- */
        .warning-box {
            background: #fff5f5;
            border: 1px solid #fed7d7;
            border-radius: 10px;
            padding: 10px 12px;
            font-size: 11.5px;
            color: #9b2c2c;
            margin-top: 12px;
            line-height: 1.4;
        }

        /* --- Sticky Floating Action --- */
        .sticky-footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-top: 1px solid var(--border);
            padding: 10px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 9999;
            box-shadow: 0 -3px 10px rgba(0,0,0,0.06);
        }

        .footer-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-left img {
            width: 38px;
            height: 38px;
            border-radius: 8px;
        }

        .footer-left h4 {
            font-size: 13px;
            font-weight: 800;
            line-height: 1.1;
        }

        .footer-left p {
            font-size: 10.5px;
            color: var(--green-dark);
            font-weight: 700;
        }

        .btn-footer-dl {
            background: var(--green);
            color: #fff;
            padding: 9px 18px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 3px 8px rgba(16, 185, 129, 0.3);
        }
