        /* ============================================================
   DESIGN TOKENS — DEEP SPACE / ASTRONAUT THEME
   Electric cyan replaces gold · Void navy replaces burgundy
============================================================ */
        :root {
            --gold:          #00c8e8;   /* electric cyan */
            --gold-light:    #33ddff;   /* neon light */
            --gold-pale:     #a8eeff;   /* pale electric */
            --gold-dim:      #005f7a;   /* dim electric */
            --burgundy:      #1a0840;   /* nebula */
            --burgundy-deep: #0b0420;   /* deep void */
            --cream:         #c0e4f5;   /* starlight */
            --cream-dark:    #68a8ca;   /* dim starlight */
            --ink:           #010c1a;   /* deep space */
            --ink-mid:       #091626;   /* space mid */
            --sepia:         #2a6282;   /* cosmic blue */
            --felt:          #072038;   /* orbit blue */
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--ink);
            /* Tiling SVG starfield */
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Ccircle cx='30' cy='20' r='1' fill='white' opacity='0.4'/%3E%3Ccircle cx='100' cy='80' r='0.8' fill='%2399ddf5' opacity='0.5'/%3E%3Ccircle cx='200' cy='30' r='1.2' fill='white' opacity='0.28'/%3E%3Ccircle cx='300' cy='150' r='0.8' fill='white' opacity='0.38'/%3E%3Ccircle cx='350' cy='50' r='1' fill='%2399ddf5' opacity='0.32'/%3E%3Ccircle cx='50' cy='200' r='1.5' fill='white' opacity='0.18'/%3E%3Ccircle cx='150' cy='280' r='0.8' fill='white' opacity='0.42'/%3E%3Ccircle cx='250' cy='320' r='1' fill='%2388ccee' opacity='0.3'/%3E%3Ccircle cx='375' cy='250' r='1.2' fill='white' opacity='0.35'/%3E%3Ccircle cx='70' cy='350' r='0.8' fill='white' opacity='0.48'/%3E%3Ccircle cx='180' cy='375' r='1' fill='%2399ddf5' opacity='0.28'/%3E%3Ccircle cx='315' cy='388' r='1.4' fill='white' opacity='0.18'/%3E%3Ccircle cx='388' cy='310' r='0.8' fill='white' opacity='0.4'/%3E%3Ccircle cx='130' cy='130' r='1' fill='white' opacity='0.33'/%3E%3Ccircle cx='278' cy='200' r='0.8' fill='%2388ccee' opacity='0.45'/%3E%3Ccircle cx='388' cy='118' r='1.2' fill='white' opacity='0.28'/%3E%3Ccircle cx='18' cy='298' r='1' fill='white' opacity='0.4'/%3E%3Ccircle cx='358' cy='388' r='0.8' fill='%2399ddf5' opacity='0.33'/%3E%3Ccircle cx='218' cy='168' r='1.5' fill='white' opacity='0.14'/%3E%3Ccircle cx='88' cy='418' r='1' fill='white' opacity='0.42'/%3E%3Ccircle cx='158' cy='58' r='0.8' fill='white' opacity='0.3'/%3E%3Ccircle cx='338' cy='278' r='1.2' fill='%2399ddf5' opacity='0.38'/%3E%3Ccircle cx='8' cy='148' r='0.8' fill='white' opacity='0.34'/%3E%3Ccircle cx='418' cy='68' r='1' fill='white' opacity='0.22'/%3E%3Ccircle cx='238' cy='398' r='0.8' fill='%2388ccee' opacity='0.38'/%3E%3C/svg%3E");
            background-size: 400px 400px;
            color: var(--cream);
            font-family: 'Exo 2', sans-serif;
            font-size: 17px;
            line-height: 1.7;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
        }

        /* ============================================================
   ORNAMENTS
============================================================ */
        .ornament {
            text-align: center;
            color: var(--gold);
            letter-spacing: 0.3em;
            font-size: 12px;
            line-height: 1;
            user-select: none;
        }

        .ornament::before,
        .ornament::after {
            content: '——★——✦——★——';
        }

        .ornament-line {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--gold-dim);
            font-family: 'Orbitron', sans-serif;
            font-size: 11px;
            letter-spacing: 0.2em;
        }

        .ornament-line::before,
        .ornament-line::after {
            content: '';
            flex: 1;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
        }

        /* ============================================================
   HEADER
============================================================ */
        header {
            background: linear-gradient(180deg, var(--burgundy-deep) 0%, var(--ink) 100%);
            border-bottom: 2px solid var(--gold-dim);
            position: relative;
        }

        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
        }

        .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 40px 14px;
            border-bottom: 1px solid rgba(0, 200, 232, 0.25);
            gap: 20px;
        }

        .logo-area {
            text-align: center;
            flex: 1;
        }

        .logo-img-link {
            display: inline-block;
            text-decoration: none;
        }

        .logo-img {
            display: block;
            margin: 0 auto;
            max-height: 72px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 0 14px rgba(0, 212, 255, 0.4));
            transition: filter 0.25s;
        }

        .logo-img:hover {
            filter: drop-shadow(0 0 24px rgba(51, 221, 255, 0.75));
        }

        .logo-name {
            font-family: 'Orbitron', sans-serif;
            font-weight: 900;
            font-size: 38px;
            letter-spacing: 0.18em;
            color: var(--gold-light);
            text-shadow: 0 0 28px rgba(51, 221, 255, 0.55), 0 0 56px rgba(0, 200, 232, 0.3), 0 2px 0 var(--gold-dim);
            line-height: 1;
        }

        .logo-tagline {
            font-family: 'Exo 2', sans-serif;
            font-style: italic;
            font-size: 13px;
            color: var(--gold);
            letter-spacing: 0.25em;
            margin-top: 4px;
        }

        .header-cta {
            display: flex;
            flex-direction: column;
            gap: 8px;
            align-items: flex-end;
        }

        .btn-vintage {
            display: inline-block;
            padding: 8px 22px;
            font-family: 'Orbitron', sans-serif;
            font-size: 10.5px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            text-decoration: none;
            border: 1px solid;
            cursor: pointer;
            transition: all 0.25s;
            text-align: center;
            white-space: nowrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--gold-dim), var(--gold), var(--gold-dim));
            color: var(--ink);
            border-color: var(--gold-light);
            box-shadow: 0 0 14px rgba(0, 200, 232, 0.2);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
            box-shadow: 0 0 26px rgba(51, 221, 255, 0.55);
        }

        .btn-outline {
            background: transparent;
            color: var(--gold);
            border-color: var(--gold-dim);
        }

        .btn-outline:hover {
            background: rgba(0, 200, 232, 0.1);
            border-color: var(--gold);
            color: var(--gold-light);
            box-shadow: 0 0 14px rgba(0, 200, 232, 0.2);
        }

        /* ============================================================
   NAVBAR
============================================================ */
        nav {
            background: var(--burgundy-deep);
            border-bottom: 2px solid var(--gold-dim);
        }

        .nav-toggle {
            display: none;
            width: 100%;
            padding: 13px 20px;
            background: none;
            border: none;
            color: var(--gold-light);
            font-family: 'Orbitron', sans-serif;
            font-size: 10.5px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            cursor: pointer;
            justify-content: space-between;
            align-items: center;
        }

        .nav-toggle-icon {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .nav-toggle-icon span {
            width: 20px;
            height: 2px;
            background: var(--gold-light);
            transition: all 0.3s;
            display: block;
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0 20px;
        }

        .nav-inner a {
            display: inline-block;
            padding: 13px 15px;
            font-family: 'Orbitron', sans-serif;
            font-size: 9.5px;
            font-weight: 600;
            letter-spacing: 0.08em;
            color: var(--cream-dark);
            text-decoration: none;
            text-transform: uppercase;
            border-right: 1px solid rgba(0, 200, 232, 0.2);
            transition: all 0.2s;
            position: relative;
        }

        .nav-inner a:first-child {
            border-left: 1px solid rgba(0, 200, 232, 0.2);
        }

        .nav-inner a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            right: 50%;
            height: 2px;
            background: var(--gold-light);
            transition: left 0.25s, right 0.25s;
            box-shadow: 0 0 6px rgba(0, 200, 232, 0.7);
        }

        .nav-inner a:hover,
        .nav-inner a.active {
            color: var(--gold-light);
            text-shadow: 0 0 8px rgba(51, 221, 255, 0.4);
        }

        .nav-inner a:hover::after,
        .nav-inner a.active::after {
            left: 0;
            right: 0;
        }

        .nav-badge {
            background: var(--gold);
            color: var(--ink);
            font-size: 8px;
            padding: 1px 5px;
            border-radius: 2px;
            margin-left: 4px;
            font-family: 'Exo 2', sans-serif;
            font-weight: 700;
            vertical-align: middle;
        }

        /* ============================================================
   MARQUEE
============================================================ */
        .marquee-strip {
            background: var(--burgundy);
            border-bottom: 1px solid rgba(0, 200, 232, 0.3);
            padding: 7px 0;
            overflow: hidden;
            font-family: 'Orbitron', sans-serif;
            font-size: 10px;
            letter-spacing: 0.1em;
            color: var(--gold-pale);
            display: flex;
            align-items: center;
        }

        .marquee-label {
            background: var(--gold);
            color: var(--ink);
            font-weight: 700;
            padding: 2px 12px;
            margin-right: 16px;
            flex-shrink: 0;
            font-size: 9px;
        }

        .marquee-track {
            display: flex;
            gap: 50px;
            animation: marquee 22s linear infinite;
            white-space: nowrap;
        }

        @keyframes marquee {
            from { transform: translateX(0); }
            to   { transform: translateX(-50%); }
        }

        /* ============================================================
   MOBILE BOTTOM NAV
============================================================ */
        .mobile-bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 800;
            background: var(--burgundy-deep);
            border-top: 2px solid var(--gold-dim);
            grid-template-columns: repeat(5, 1fr);
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.8), 0 -1px 0 rgba(0, 200, 232, 0.15);
        }

        .mobile-bottom-nav a {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 9px 4px 7px;
            text-decoration: none;
            color: var(--cream-dark);
            font-family: 'Orbitron', sans-serif;
            font-size: 7.5px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            transition: color 0.2s;
            border-right: 1px solid rgba(0, 200, 232, 0.15);
            gap: 4px;
        }

        .mobile-bottom-nav a:last-child {
            border-right: none;
        }

        .mobile-bottom-nav a.primary-cta {
            background: linear-gradient(180deg, var(--gold-dim), var(--gold));
            color: var(--ink);
            font-weight: 700;
        }

        .mobile-bottom-nav a:hover {
            color: var(--gold-light);
        }

        .mbn-icon {
            font-size: 18px;
            line-height: 1;
        }

        /* ============================================================
   MAIN LAYOUT
============================================================ */
        .main-wrap {
            display: grid;
            grid-template-columns: 260px 1fr;
            max-width: 1280px;
            margin: 0 auto;
            padding: 28px 20px;
            gap: 0;
        }

        /* ============================================================
   SIDEBAR
============================================================ */
        .sidebar {
            padding-right: 24px;
        }

        .sidebar-box {
            background: linear-gradient(180deg, rgba(26, 8, 64, 0.55) 0%, rgba(1, 12, 26, 0.8) 100%);
            border: 1px solid var(--gold-dim);
            margin-bottom: 20px;
            position: relative;
            box-shadow: 0 0 12px rgba(0, 200, 232, 0.05);
        }

        .sidebar-box::before,
        .sidebar-box::after {
            content: '◈';
            position: absolute;
            color: var(--gold);
            font-size: 10px;
        }

        .sidebar-box::before {
            top: -6px;
            left: 50%;
            transform: translateX(-50%);
        }

        .sidebar-box::after {
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%);
        }

        .sidebar-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold);
            text-align: center;
            padding: 11px 14px;
            border-bottom: 1px solid rgba(0, 200, 232, 0.25);
            background: rgba(0, 0, 0, 0.3);
            text-shadow: 0 0 8px rgba(0, 200, 232, 0.4);
        }

        .sidebar-banner img {
            width: 100%;
            filter: brightness(0.9) saturate(0.85);
        }

        .bank-item {
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 8px 12px;
            border-bottom: 1px solid rgba(0, 200, 232, 0.1);
            cursor: pointer;
            transition: background 0.2s;
        }

        .bank-item:hover {
            background: rgba(0, 200, 232, 0.07);
        }

        .bank-item:last-child {
            border-bottom: none;
        }

        .bank-status {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .status-online {
            background: #4ade80;
            box-shadow: 0 0 5px #4ade80;
        }

        .status-offline {
            background: #ef4444;
            box-shadow: 0 0 5px #ef4444;
        }

        .bank-name {
            flex: 1;
            font-family: 'Orbitron', sans-serif;
            font-size: 9.5px;
            letter-spacing: 0.06em;
            color: var(--cream-dark);
        }

        .bank-hours {
            font-size: 10px;
            color: var(--sepia);
            font-style: italic;
            font-family: 'Exo 2', sans-serif;
        }

        /* ============================================================
   CONTENT AREA
============================================================ */
        .content-area {
            min-width: 0;
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 16px;
        }

        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: var(--gold-light);
            text-shadow: 0 0 12px rgba(51, 221, 255, 0.5), 0 1px 0 var(--gold-dim);
            white-space: nowrap;
        }

        .section-rule {
            flex: 1;
            height: 1px;
            background: linear-gradient(to right, var(--gold-dim), transparent);
        }

        /* ============================================================
   BANNER
============================================================ */
        .banner-placeholder {
            background:
                url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Ccircle cx='25' cy='18' r='1.2' fill='white' opacity='0.5'/%3E%3Ccircle cx='90' cy='60' r='0.8' fill='%2399ddf5' opacity='0.45'/%3E%3Ccircle cx='175' cy='25' r='1' fill='white' opacity='0.35'/%3E%3Ccircle cx='255' cy='120' r='0.9' fill='white' opacity='0.42'/%3E%3Ccircle cx='40' cy='175' r='1.3' fill='%2388ccee' opacity='0.3'/%3E%3Ccircle cx='130' cy='240' r='0.8' fill='white' opacity='0.48'/%3E%3Ccircle cx='220' cy='275' r='1.1' fill='%2399ddf5' opacity='0.33'/%3E%3Ccircle cx='285' cy='65' r='0.8' fill='white' opacity='0.4'/%3E%3Ccircle cx='60' cy='290' r='1' fill='white' opacity='0.28'/%3E%3Ccircle cx='200' cy='140' r='1.4' fill='white' opacity='0.18'/%3E%3C/svg%3E"),
                linear-gradient(135deg, var(--burgundy-deep) 0%, var(--felt) 100%);
            background-size: 300px 300px, cover;
            border: 1px solid var(--gold-dim);
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 22px;
            position: relative;
            overflow: hidden;
        }

        /* subtle grid overlay on banner */
        .banner-placeholder::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(0, 200, 232, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 200, 232, 0.04) 1px, transparent 1px);
            background-size: 32px 32px;
            pointer-events: none;
            z-index: 0;
        }

        .banner-inner {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 10px;
            padding: 16px;
            z-index: 1;
        }

        .banner-stars {
            font-family: 'Orbitron', sans-serif;
            font-size: 10px;
            letter-spacing: 0.5em;
            color: var(--gold);
            opacity: 0.75;
            text-shadow: 0 0 10px rgba(0, 200, 232, 0.7);
        }

        .banner-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 20px;
            font-weight: 900;
            letter-spacing: 0.1em;
            color: var(--gold-light);
            text-align: center;
            text-shadow: 0 0 20px rgba(51, 221, 255, 0.55), 0 0 40px rgba(0, 200, 232, 0.35);
        }

        .banner-sub {
            font-family: 'Exo 2', sans-serif;
            font-style: italic;
            font-size: 14px;
            color: var(--cream-dark);
            opacity: 0.85;
            text-align: center;
            max-width: 580px;
        }

        /* ============================================================
   STEPS
============================================================ */
        .steps-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-bottom: 24px;
        }

        .step-card {
            background: linear-gradient(180deg, rgba(7, 32, 56, 0.6), rgba(1, 12, 26, 0.8));
            border: 1px solid rgba(0, 200, 232, 0.2);
            padding: 16px 12px;
            text-align: center;
            transition: all 0.2s;
            position: relative;
            overflow: hidden;
        }

        /* grid lines on step cards */
        .step-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(0, 200, 232, 0.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 200, 232, 0.025) 1px, transparent 1px);
            background-size: 16px 16px;
            pointer-events: none;
        }

        .step-card:hover {
            border-color: var(--gold-dim);
            box-shadow: 0 0 18px rgba(0, 200, 232, 0.1);
        }

        .step-num {
            font-family: 'Orbitron', sans-serif;
            font-size: 26px;
            font-weight: 900;
            color: var(--gold-dim);
            line-height: 1;
            margin-bottom: 6px;
            text-shadow: 0 0 10px rgba(0, 200, 232, 0.35);
            position: relative;
            z-index: 1;
        }

        .step-name {
            font-family: 'Orbitron', sans-serif;
            font-size: 10px;
            letter-spacing: 0.12em;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 3px;
            position: relative;
            z-index: 1;
        }

        .step-desc {
            font-size: 12px;
            color: var(--cream-dark);
            opacity: 0.7;
            font-style: italic;
            font-family: 'Exo 2', sans-serif;
            position: relative;
            z-index: 1;
        }

        /* ============================================================
   JACKPOT
============================================================ */
        .jackpot-banner {
            background: linear-gradient(135deg, var(--burgundy-deep) 0%, #1a0338 50%, var(--felt) 100%);
            border: 1px solid var(--gold-dim);
            border-top: 3px solid var(--gold);
            padding: 22px 24px;
            margin-bottom: 24px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            position: relative;
            overflow: hidden;
        }

        .jackpot-banner::before {
            content: '⊛ PROGRESSIVE JACKPOT ⊛';
            position: absolute;
            top: 7px;
            left: 50%;
            transform: translateX(-50%);
            font-family: 'Orbitron', sans-serif;
            font-size: 7.5px;
            letter-spacing: 0.25em;
            color: var(--gold);
            white-space: nowrap;
            text-shadow: 0 0 8px rgba(0, 200, 232, 0.6);
        }

        /* grid overlay */
        .jackpot-banner::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(0, 200, 232, 0.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 200, 232, 0.025) 1px, transparent 1px);
            background-size: 26px 26px;
            pointer-events: none;
        }

        .jackpot-amount {
            text-align: center;
            padding-top: 8px;
            position: relative;
            z-index: 1;
        }

        .jackpot-label {
            font-family: 'Orbitron', sans-serif;
            font-size: 8px;
            letter-spacing: 0.3em;
            color: var(--sepia);
            display: block;
            margin-bottom: 4px;
        }

        .jackpot-num {
            font-family: 'Orbitron', sans-serif;
            font-size: 30px;
            font-weight: 900;
            color: var(--gold-light);
            text-shadow: 0 0 20px rgba(51, 221, 255, 0.65), 0 0 42px rgba(0, 200, 232, 0.4), 0 2px 0 var(--gold-dim);
            letter-spacing: 0.04em;
            display: block;
        }

        .tournament-box {
            border-left: 1px solid rgba(0, 200, 232, 0.25);
            padding-left: 18px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            z-index: 1;
        }

        .tournament-label {
            font-family: 'Orbitron', sans-serif;
            font-size: 8px;
            letter-spacing: 0.3em;
            color: var(--sepia);
            margin-bottom: 5px;
        }

        .tournament-prize {
            font-family: 'Exo 2', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--gold);
            text-shadow: 0 0 10px rgba(0, 200, 232, 0.3);
        }

        .tournament-date {
            font-size: 12px;
            font-style: italic;
            color: var(--cream-dark);
            opacity: 0.7;
            margin-top: 3px;
            font-family: 'Exo 2', sans-serif;
        }

        /* ============================================================
   HOT MATCH
============================================================ */
        .hotmatch-section {
            background: linear-gradient(180deg, rgba(7, 32, 56, 0.4), rgba(1, 12, 26, 0.7));
            border: 1px solid var(--gold-dim);
            margin-bottom: 26px;
        }

        .hm-tabs {
            display: flex;
            border-bottom: 1px solid rgba(0, 200, 232, 0.25);
            background: rgba(0, 0, 0, 0.3);
            overflow-x: auto;
        }

        .hm-tab {
            padding: 11px 20px;
            flex-shrink: 0;
            font-family: 'Orbitron', sans-serif;
            font-size: 9px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--cream-dark);
            cursor: pointer;
            border-right: 1px solid rgba(0, 200, 232, 0.15);
            transition: all 0.2s;
            position: relative;
        }

        .hm-tab.active {
            color: var(--gold-light);
            background: rgba(0, 200, 232, 0.08);
            text-shadow: 0 0 8px rgba(51, 221, 255, 0.4);
        }

        .hm-tab.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gold);
            box-shadow: 0 0 8px rgba(0, 200, 232, 0.7);
        }

        .hm-tab:hover {
            color: var(--gold);
        }

        .hm-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
        }

        .match-card {
            border-right: 1px solid rgba(0, 200, 232, 0.15);
            padding: 13px 12px 11px;
            transition: background 0.2s;
        }

        .match-card:last-child {
            border-right: none;
        }

        .match-card:hover {
            background: rgba(0, 200, 232, 0.04);
        }

        .match-league {
            font-family: 'Orbitron', sans-serif;
            font-size: 8px;
            letter-spacing: 0.12em;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 7px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .match-time {
            color: var(--sepia);
            font-size: 9px;
            margin-left: auto;
            letter-spacing: 0;
            font-family: 'Exo 2', sans-serif;
        }

        .match-team {
            display: flex;
            align-items: center;
            gap: 7px;
            padding: 3px 0;
            font-size: 12px;
            color: var(--cream);
            font-family: 'Exo 2', sans-serif;
        }

        .team-badge {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 7px;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            flex-shrink: 0;
        }

        .badge-h {
            background: #0a3a1a;
            color: #4ade80;
            border: 1px solid rgba(74, 222, 128, 0.5);
        }

        .badge-a {
            background: #3a0a0a;
            color: #f87171;
            border: 1px solid rgba(248, 113, 113, 0.5);
        }

        .match-odds {
            display: flex;
            gap: 5px;
            margin-top: 7px;
        }

        .odds-chip {
            flex: 1;
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(0, 200, 232, 0.2);
            padding: 4px 3px;
            text-align: center;
            font-size: 10px;
            color: var(--cream-dark);
            font-family: 'Exo 2', sans-serif;
        }

        .odds-label {
            font-family: 'Orbitron', sans-serif;
            font-size: 7px;
            color: var(--gold);
            letter-spacing: 0.1em;
            display: block;
        }

        .match-play-btn {
            display: block;
            margin-top: 9px;
            text-align: center;
            padding: 6px;
            font-family: 'Orbitron', sans-serif;
            font-size: 8px;
            letter-spacing: 0.1em;
            background: linear-gradient(135deg, rgba(26, 8, 64, 0.6), rgba(11, 4, 32, 0.9));
            border: 1px solid rgba(0, 200, 232, 0.3);
            color: var(--gold-pale);
            text-decoration: none;
            text-transform: uppercase;
            transition: all 0.2s;
        }

        .match-play-btn:hover {
            background: linear-gradient(135deg, var(--burgundy), var(--burgundy-deep));
            border-color: var(--gold);
            color: var(--gold-light);
            box-shadow: 0 0 10px rgba(0, 200, 232, 0.2);
        }

        .promo-tag {
            background: var(--burgundy);
            border: 1px solid var(--gold-dim);
            color: var(--gold-pale);
            font-family: 'Orbitron', sans-serif;
            font-size: 7.5px;
            letter-spacing: 0.1em;
            padding: 2px 6px;
            text-transform: uppercase;
        }

        /* ============================================================
   GAME CATEGORIES
============================================================ */
        .games-cat {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 24px;
        }

        .game-cat-card {
            background: linear-gradient(135deg, var(--felt), rgba(1, 12, 26, 0.9));
            border: 1px solid rgba(0, 200, 232, 0.25);
            padding: 18px 12px;
            text-align: center;
            transition: all 0.2s;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .game-cat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .game-cat-card:hover {
            border-color: var(--gold);
            box-shadow: 0 0 18px rgba(0, 200, 232, 0.15);
        }

        .game-cat-card:hover::before {
            transform: scaleX(1);
        }

        .cat-icon {
            font-size: 32px;
            margin-bottom: 8px;
        }

        .cat-name {
            font-family: 'Orbitron', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: var(--gold);
            text-transform: uppercase;
        }

        .cat-sub {
            font-size: 11px;
            font-style: italic;
            color: var(--sepia);
            margin-top: 3px;
            font-family: 'Exo 2', sans-serif;
        }

        /* ============================================================
   SLOT GAMES
============================================================ */
        .slots-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 10px;
            margin-bottom: 26px;
        }

        .slot-card {
            position: relative;
            background: var(--ink-mid);
            border: 1px solid rgba(0, 200, 232, 0.2);
            overflow: hidden;
            transition: all 0.25s;
            cursor: pointer;
        }

        .slot-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.85) 100%);
            z-index: 1;
            pointer-events: none;
        }

        .slot-card:hover {
            border-color: var(--gold);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6), 0 0 16px rgba(0, 200, 232, 0.2);
        }

        .slot-card:hover .slot-overlay {
            opacity: 1;
        }

        .slot-card img {
            width: 100%;
            filter: brightness(0.85) saturate(0.88);
            transition: filter 0.25s, transform 0.25s;
        }

        .slot-card:hover img {
            filter: brightness(1) saturate(1.05);
            transform: scale(1.04);
        }

        .slot-overlay {
            position: absolute;
            inset: 0;
            background: rgba(26, 8, 64, 0.75);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.25s;
            z-index: 3;
        }

        .play-btn-overlay {
            font-family: 'Orbitron', sans-serif;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.12em;
            color: var(--gold-light);
            border: 1px solid var(--gold);
            padding: 7px 12px;
            text-transform: uppercase;
            background: rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 14px rgba(0, 200, 232, 0.35);
        }

        .slot-name {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 7px 6px;
            z-index: 2;
            font-family: 'Orbitron', sans-serif;
            font-size: 8px;
            letter-spacing: 0.04em;
            color: var(--cream-dark);
            text-align: center;
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
        }

        /* ============================================================
   PROVIDERS
============================================================ */
        .providers-row {
            display: flex;
            flex-wrap: wrap;
            gap: 7px;
            padding: 14px 0;
            border-top: 1px solid rgba(0, 200, 232, 0.2);
            border-bottom: 1px solid rgba(0, 200, 232, 0.2);
            margin-bottom: 26px;
            justify-content: center;
        }

        .provider-chip {
            background: rgba(0, 0, 0, 0.45);
            border: 1px solid rgba(0, 200, 232, 0.2);
            padding: 5px 12px;
            font-family: 'Orbitron', sans-serif;
            font-size: 8.5px;
            letter-spacing: 0.1em;
            color: var(--cream-dark);
            transition: all 0.2s;
            cursor: pointer;
            clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
        }

        .provider-chip:hover {
            border-color: var(--gold-dim);
            color: var(--gold);
            box-shadow: 0 0 10px rgba(0, 200, 232, 0.15);
        }

        /* ============================================================
   FOOTER
============================================================ */
        footer {
            background: var(--burgundy-deep);
            border-top: 2px solid var(--gold-dim);
            margin-top: 20px;
        }

        footer::after {
            content: '';
            display: block;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
        }

        .footer-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0;
            border-bottom: 1px solid rgba(0, 200, 232, 0.2);
            background: rgba(0, 0, 0, 0.3);
        }

        .footer-nav a {
            padding: 11px 18px;
            font-family: 'Orbitron', sans-serif;
            font-size: 9px;
            letter-spacing: 0.08em;
            color: var(--cream-dark);
            text-decoration: none;
            border-right: 1px solid rgba(0, 200, 232, 0.15);
            text-transform: uppercase;
            transition: all 0.2s;
        }

        .footer-nav a:last-child {
            border-right: none;
        }

        .footer-nav a:hover {
            color: var(--gold-light);
            background: rgba(0, 200, 232, 0.07);
            text-shadow: 0 0 8px rgba(51, 221, 255, 0.35);
        }

        .footer-body {
            max-width: 1280px;
            margin: 0 auto;
            padding: 32px 40px;
            display: grid;
            grid-template-columns: 200px 1fr 200px;
            gap: 36px;
            align-items: start;
        }

        .footer-logo-col {
            text-align: center;
        }

        .footer-logo-name {
            font-family: 'Orbitron', sans-serif;
            font-size: 24px;
            font-weight: 900;
            color: var(--gold-light);
            letter-spacing: 0.15em;
            text-shadow: 0 0 14px rgba(51, 221, 255, 0.4), 0 1px 0 var(--gold-dim);
        }

        .footer-logo-tag {
            font-family: 'Exo 2', sans-serif;
            font-style: italic;
            font-size: 12px;
            color: var(--sepia);
            letter-spacing: 0.2em;
            margin-top: 4px;
        }

        .footer-license {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin-top: 14px;
        }

        .license-badge {
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(0, 200, 232, 0.3);
            padding: 6px 10px;
            font-family: 'Orbitron', sans-serif;
            font-size: 7.5px;
            letter-spacing: 0.1em;
            color: var(--gold);
            text-align: center;
        }

        .footer-text-col h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: var(--gold);
            margin-bottom: 8px;
            text-transform: uppercase;
            text-shadow: 0 0 8px rgba(0, 200, 232, 0.3);
        }

        .footer-text-col p {
            font-size: 13px;
            color: var(--cream-dark);
            opacity: 0.7;
            margin-bottom: 10px;
            text-align: justify;
            line-height: 1.7;
            font-family: 'Exo 2', sans-serif;
        }

        .footer-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            margin-top: 10px;
        }

        .footer-tag {
            font-family: 'Orbitron', sans-serif;
            font-size: 8px;
            letter-spacing: 0.08em;
            color: var(--sepia);
            border: 1px solid rgba(0, 200, 232, 0.15);
            padding: 3px 9px;
            transition: all 0.2s;
            cursor: pointer;
            clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
        }

        .footer-tag:hover {
            color: var(--gold);
            border-color: var(--gold-dim);
        }

        .footer-banks-col h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 9.5px;
            letter-spacing: 0.12em;
            color: var(--gold);
            margin-bottom: 8px;
            text-transform: uppercase;
            text-shadow: 0 0 8px rgba(0, 200, 232, 0.3);
        }

        .bank-list {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .bank-list-item {
            display: flex;
            align-items: center;
            gap: 7px;
            font-family: 'Orbitron', sans-serif;
            font-size: 8.5px;
            letter-spacing: 0.05em;
            color: var(--cream-dark);
            padding: 5px 9px;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(0, 200, 232, 0.1);
        }

        .footer-copy {
            text-align: center;
            padding: 13px;
            font-family: 'Exo 2', sans-serif;
            font-size: 12px;
            font-style: italic;
            color: var(--sepia);
            border-top: 1px solid rgba(0, 200, 232, 0.15);
        }

        /* ============================================================
   POPUP
============================================================ */
        .popup-overlay {
            position: fixed;
            inset: 0;
            background: rgba(1, 8, 20, 0.92);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            backdrop-filter: blur(4px);
            padding: 16px;
        }

        .popup-box {
            width: 100%;
            max-width: 420px;
            background: linear-gradient(160deg, var(--burgundy-deep) 0%, var(--ink) 100%);
            border: 1px solid var(--gold-dim);
            position: relative;
            animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
            box-shadow: 0 0 50px rgba(0, 200, 232, 0.15), 0 20px 60px rgba(0, 0, 0, 0.85);
        }

        .popup-box::before,
        .popup-box::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            height: 3px;
        }

        .popup-box::before {
            top: 0;
            background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
        }

        .popup-box::after {
            bottom: 0;
            background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
        }

        @keyframes popIn {
            from {
                opacity: 0;
                transform: scale(0.85) rotate(-2deg);
            }

            to {
                opacity: 1;
                transform: scale(1) rotate(0deg);
            }
        }

        .popup-inner-border {
            position: absolute;
            inset: 8px;
            border: 1px solid rgba(0, 200, 232, 0.2);
            pointer-events: none;
        }

        .popup-close {
            position: absolute;
            top: -13px;
            right: -13px;
            width: 26px;
            height: 26px;
            background: var(--gold);
            color: var(--ink);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-family: 'Orbitron', sans-serif;
            font-weight: 900;
            font-size: 12px;
            z-index: 2;
            transition: all 0.2s;
        }

        .popup-close:hover {
            background: var(--gold-light);
            box-shadow: 0 0 16px rgba(51, 221, 255, 0.6);
        }

        .popup-header {
            padding: 18px 24px 8px;
            text-align: center;
        }

        .popup-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 17px;
            font-weight: 700;
            letter-spacing: 0.12em;
            color: var(--gold-light);
            text-shadow: 0 0 12px rgba(51, 221, 255, 0.45);
        }

        .popup-sub {
            font-size: 13px;
            font-style: italic;
            color: var(--sepia);
            margin-top: 3px;
            font-family: 'Exo 2', sans-serif;
        }

        .popup-img-wrap {
            padding: 0 24px 10px;
        }

        .popup-img-wrap img {
            width: 100%;
            display: block;
            border: 1px solid var(--gold-dim);
            filter: brightness(0.95) contrast(1.05);
        }

        .popup-btns {
            display: flex;
            flex-direction: column;
            gap: 9px;
            padding: 14px 24px 24px;
        }

        .popup-btn {
            display: block;
            padding: 13px;
            text-align: center;
            font-family: 'Orbitron', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            text-decoration: none;
            border: 1px solid;
            transition: all 0.25s;
            position: relative;
            overflow: hidden;
            clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
        }

        .popup-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.5s;
        }

        .popup-btn:hover::before {
            transform: translateX(100%);
        }

        .pb-gold {
            background: linear-gradient(135deg, var(--gold-dim), var(--gold));
            color: var(--ink);
            border-color: var(--gold-light);
        }

        .pb-burgundy {
            background: var(--burgundy);
            color: var(--gold-pale);
            border-color: var(--gold-dim);
        }

        .pb-outline {
            background: transparent;
            color: var(--gold);
            border-color: var(--gold-dim);
        }

        /* ============================================================
   CORNER DECO — HUD targeting corners
============================================================ */
        .corner-deco {
            position: relative;
        }

        .corner-deco::before {
            content: '';
            position: absolute;
            top: 5px;
            left: 5px;
            width: 14px;
            height: 14px;
            border-top: 1px solid var(--gold-dim);
            border-left: 1px solid var(--gold-dim);
        }

        .corner-deco::after {
            content: '';
            position: absolute;
            top: 5px;
            right: 5px;
            width: 14px;
            height: 14px;
            border-top: 1px solid var(--gold-dim);
            border-right: 1px solid var(--gold-dim);
        }

        /* ============================================================
   ANIMATIONS
============================================================ */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(16px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .anim {
            animation: fadeUp 0.5s ease forwards;
        }

        .anim-2 {
            animation: fadeUp 0.5s 0.1s ease both;
        }

        .anim-3 {
            animation: fadeUp 0.5s 0.2s ease both;
        }

        /* ============================================================
   MOBILE SIDEBAR DRAWER
============================================================ */
        .sidebar-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 700;
        }

        .sidebar-overlay.open {
            display: block;
        }

        /* ============================================================
   ██████████████  RESPONSIVE BREAKPOINTS  ██████████████
============================================================ */

        @media (max-width: 1024px) {
            .main-wrap {
                grid-template-columns: 220px 1fr;
            }

            .logo-name {
                font-size: 30px;
            }

            .slots-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .hm-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .match-card:nth-child(2) {
                border-right: none;
            }

            .match-card:nth-child(3) {
                border-top: 1px solid rgba(0, 200, 232, 0.15);
            }

            .match-card:nth-child(4) {
                border-top: 1px solid rgba(0, 200, 232, 0.15);
                border-right: none;
            }

            .footer-body {
                grid-template-columns: 1fr 1fr;
                padding: 28px 24px;
            }

            .footer-logo-col {
                grid-column: 1 / -1;
                display: flex;
                align-items: center;
                gap: 24px;
                text-align: left;
            }

            .footer-license {
                justify-content: flex-start;
                margin-top: 0;
            }
        }

        @media (max-width: 768px) {
            .header-top {
                padding: 14px 16px 12px;
                gap: 12px;
            }

            .logo-img {
                max-height: 54px;
            }

            .logo-name {
                font-size: 22px;
                letter-spacing: 0.1em;
            }

            .logo-tagline {
                font-size: 10px;
                letter-spacing: 0.12em;
            }

            .header-cta {
                flex-direction: row;
                align-items: center;
            }

            .btn-vintage {
                padding: 7px 14px;
                font-size: 9.5px;
                letter-spacing: 0.07em;
            }

            .nav-toggle {
                display: flex;
            }

            .nav-inner {
                display: none;
                flex-direction: column;
                padding: 0;
                background: rgba(0, 0, 0, 0.4);
            }

            .nav-inner.open {
                display: flex;
            }

            .nav-inner a {
                border-right: none;
                border-left: none !important;
                border-bottom: 1px solid rgba(0, 200, 232, 0.1);
                width: 100%;
                padding: 12px 20px;
            }

            .nav-inner a::after {
                display: none;
            }

            .nav-inner a:hover,
            .nav-inner a.active {
                background: rgba(0, 200, 232, 0.07);
            }

            .main-wrap {
                grid-template-columns: 1fr;
                padding: 16px 14px;
            }

            .sidebar {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                bottom: 0;
                width: 280px;
                z-index: 750;
                overflow-y: auto;
                background: var(--ink);
                border-right: 2px solid var(--gold-dim);
                padding: 20px 14px 80px;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
            }

            .sidebar.drawer-open {
                display: block;
                transform: translateX(0);
            }

            .steps-row {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
            }

            .step-num {
                font-size: 20px;
            }

            .step-name {
                font-size: 9px;
            }

            .step-desc {
                font-size: 11px;
            }

            .jackpot-banner {
                grid-template-columns: 1fr;
                gap: 14px;
                padding: 20px 16px;
            }

            .jackpot-num {
                font-size: 26px;
            }

            .tournament-box {
                border-left: none;
                border-top: 1px solid rgba(0, 200, 232, 0.25);
                padding-left: 0;
                padding-top: 14px;
            }

            .tournament-prize {
                font-size: 22px;
            }

            .section-title {
                font-size: 13px;
            }

            .hm-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .match-card {
                border-right: none;
                border-bottom: 1px solid rgba(0, 200, 232, 0.1);
                padding: 12px 12px 10px;
            }

            .match-card:last-child {
                border-bottom: none;
            }

            .games-cat {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }

            .cat-icon {
                font-size: 28px;
            }

            .cat-name {
                font-size: 9.5px;
            }

            .slots-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
            }

            .slot-name {
                font-size: 7.5px;
            }

            .footer-body {
                grid-template-columns: 1fr;
                padding: 24px 16px;
                gap: 24px;
            }

            .footer-logo-col {
                text-align: center;
                display: block;
            }

            .footer-license {
                justify-content: center;
            }

            .footer-nav {
                overflow-x: auto;
                flex-wrap: nowrap;
                justify-content: flex-start;
            }

            .footer-nav a {
                flex-shrink: 0;
                padding: 10px 14px;
                font-size: 8.5px;
            }

            .mobile-bottom-nav {
                display: grid;
            }

            body {
                padding-bottom: 58px;
            }

            .banner-placeholder {
                height: 160px;
            }

            .banner-title {
                font-size: 16px;
                letter-spacing: 0.08em;
            }

            .banner-sub {
                font-size: 12px;
            }

            .banner-stars {
                font-size: 9px;
            }
        }

        @media (max-width: 480px) {
            .header-top {
                padding: 10px 12px;
                gap: 8px;
            }

            .logo-img {
                max-height: 44px;
            }

            .logo-name {
                font-size: 18px;
                letter-spacing: 0.06em;
            }

            .logo-tagline {
                display: none;
            }

            .btn-vintage {
                padding: 6px 12px;
                font-size: 8.5px;
                letter-spacing: 0.05em;
            }

            .banner-placeholder {
                height: 140px;
            }

            .banner-title {
                font-size: 13px;
                letter-spacing: 0.06em;
            }

            .banner-sub {
                font-size: 11px;
            }

            .steps-row {
                grid-template-columns: repeat(3, 1fr);
                gap: 6px;
            }

            .step-card {
                padding: 12px 8px;
            }

            .step-num {
                font-size: 18px;
            }

            .step-name {
                font-size: 8.5px;
                letter-spacing: 0.05em;
            }

            .step-desc {
                display: none;
            }

            .jackpot-num {
                font-size: 22px;
            }

            .tournament-prize {
                font-size: 18px;
            }

            .games-cat {
                grid-template-columns: repeat(2, 1fr);
                gap: 6px;
            }

            .game-cat-card {
                padding: 14px 8px;
            }

            .cat-icon {
                font-size: 24px;
                margin-bottom: 6px;
            }

            .slots-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 6px;
            }

            .hm-grid {
                grid-template-columns: 1fr;
            }

            .match-card {
                border-bottom: 1px solid rgba(0, 200, 232, 0.1);
            }

            .section-title {
                font-size: 12px;
            }

            .section-header {
                gap: 8px;
            }

            .marquee-strip {
                font-size: 8.5px;
            }

            .marquee-label {
                padding: 2px 10px;
                font-size: 8px;
            }

            .footer-nav a {
                padding: 9px 10px;
                font-size: 8px;
            }

            .providers-row {
                gap: 5px;
            }

            .provider-chip {
                font-size: 7.5px;
                padding: 4px 9px;
            }

            .popup-overlay {
                align-items: center;
                padding: 0;
            }

            .popup-box {
                max-width: 100%;
                border-radius: 0;
                border-left: none;
                border-right: none;
                border-bottom: none;
                animation: slideUp 0.4s ease forwards;
            }

            @keyframes slideUp {
                from { transform: translateY(100%); }
                to   { transform: translateY(0); }
            }

            .popup-close {
                top: -13px;
                right: 8px;
            }

            .popup-header {
                padding: 18px 18px 8px;
            }

            .popup-btns {
                padding: 12px 18px 20px;
            }

            .popup-title {
                font-size: 15px;
            }

            body {
                padding-bottom: 54px;
            }

            .mobile-bottom-nav a {
                font-size: 7px;
                padding: 8px 3px 6px;
            }

            .mbn-icon {
                font-size: 16px;
            }
        }

        @media (max-width: 360px) {
            .logo-name {
                font-size: 15px;
            }

            .slots-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .games-cat {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ============================================================
   SIDEBAR CLOSE BUTTON
============================================================ */
        .sidebar-close-btn {
            display: none;
            width: 100%;
            padding: 10px 14px;
            margin-bottom: 14px;
            background: rgba(0, 200, 232, 0.08);
            border: 1px solid var(--gold-dim);
            color: var(--gold);
            font-family: 'Orbitron', sans-serif;
            font-size: 10px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            cursor: pointer;
            text-align: center;
        }

        @media (max-width: 768px) {
            .sidebar-close-btn {
                display: block;
            }
        }

        /* ============================================================
   TOUCH-FRIENDLY
============================================================ */
        @media (hover: none) {
            .slot-card .slot-overlay {
                opacity: 1;
                background: rgba(26, 8, 64, 0.6);
            }

            .play-btn-overlay {
                font-size: 8.5px;
                padding: 5px 10px;
            }

            .game-cat-card::before {
                display: none;
            }
        }

/* ============================================================
   CONTENT-PAGE HELPERS  (category & info pages — mybetcoin88)
   var()-based so they follow the domain's own theme tokens.
============================================================ */
.page-intro { margin: 4px 0 22px; }
.page-intro .banner-sub { max-width: 760px; }
.seo-article { background: linear-gradient(160deg, var(--ink-mid) 0%, var(--burgundy-deep) 100%); border: 1px solid rgba(0,200,232,0.22); border-radius: 12px; padding: 24px 26px; margin: 26px 0 8px; }
.seo-article h2 { font-family: 'Orbitron', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: 0.04em; color: var(--gold-light); margin: 18px 0 8px; }
.seo-article h2:first-child { margin-top: 0; }
.seo-article p { font-family: 'Exo 2', sans-serif; font-size: 13.5px; line-height: 1.85; color: var(--cream-dark); margin-bottom: 10px; }
.seo-article ul { list-style: none; margin: 6px 0 12px; padding: 0; }
.seo-article li { font-family: 'Exo 2', sans-serif; font-size: 13px; line-height: 1.9; color: var(--cream-dark); padding-left: 22px; position: relative; }
.seo-article li::before { content: '◈'; position: absolute; left: 0; color: var(--gold); font-size: 11px; top: 3px; }

.info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; margin: 6px 0 10px; }
.info-card { background: linear-gradient(165deg, var(--ink-mid) 0%, var(--burgundy-deep) 100%); border: 1px solid rgba(0,200,232,0.22); border-radius: 12px; padding: 20px 16px; text-align: center; transition: transform .2s, border-color .2s; }
.info-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.info-card .ic-icon { font-size: 34px; line-height: 1; margin-bottom: 10px; }
.info-card .ic-name { font-family: 'Orbitron', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.03em; color: var(--gold-light); margin-bottom: 5px; }
.info-card .ic-sub { font-family: 'Exo 2', sans-serif; font-size: 11.5px; color: var(--sepia); line-height: 1.5; margin-bottom: 12px; min-height: 32px; }
.info-card .ic-btn { display: inline-block; padding: 7px 16px; font-family: 'Orbitron', sans-serif; font-size: 9.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; color: var(--ink); background: linear-gradient(180deg, var(--gold-light), var(--gold)); border-radius: 6px; }
.info-card .ic-btn:hover { filter: brightness(1.1); }

.data-table { width: 100%; border-collapse: collapse; margin: 8px 0 12px; font-family: 'Exo 2', sans-serif; }
.data-table th { background: rgba(0,200,232,0.12); border: 1px solid rgba(0,200,232,0.3); padding: 12px 14px; font-family: 'Orbitron', sans-serif; font-size: 11px; letter-spacing: 0.05em; color: var(--gold-light); text-align: left; }
.data-table td { border: 1px solid rgba(0,200,232,0.14); padding: 11px 14px; font-size: 13px; color: var(--cream-dark); }
.data-table tr:nth-child(even) td { background: rgba(1,12,26,0.5); }
.data-table .st-on { color: #34e5b0; font-weight: 700; }
.data-table .st-off { color: #f87171; font-weight: 700; }

.pill-grid { display: flex; flex-wrap: wrap; gap: 10px; margin: 8px 0 12px; }
.pill { font-family: 'Orbitron', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.05em; color: var(--cream); background: linear-gradient(180deg, var(--ink-mid), var(--burgundy-deep)); border: 1px solid rgba(0,200,232,0.3); border-radius: 30px; padding: 9px 18px; }

.cta-band { text-align: center; background: linear-gradient(160deg, var(--felt) 0%, var(--burgundy-deep) 100%); border: 1px solid rgba(0,200,232,0.35); border-radius: 14px; padding: 28px 22px; margin: 26px 0 8px; }
.cta-band .cb-title { font-family: 'Orbitron', sans-serif; font-size: 18px; font-weight: 800; color: var(--gold-light); margin-bottom: 8px; }
.cta-band .cb-sub { font-family: 'Exo 2', sans-serif; font-size: 13px; color: var(--cream-dark); margin-bottom: 16px; }
.cta-band .btn-vintage { margin: 0 5px; }

.calc-box { background: linear-gradient(160deg, var(--ink-mid) 0%, var(--burgundy-deep) 100%); border: 1px solid rgba(0,200,232,0.28); border-radius: 14px; padding: 24px; margin: 8px 0 12px; max-width: 640px; }
.calc-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.calc-row label { font-family: 'Orbitron', sans-serif; font-size: 11.5px; letter-spacing: 0.04em; color: var(--cream); }
.calc-box input, .calc-box select { font-family: 'Exo 2', sans-serif; font-size: 13px; padding: 9px 12px; width: 190px; color: var(--cream); background: rgba(1,12,26,0.85); border: 1px solid rgba(0,200,232,0.35); border-radius: 7px; }
.calc-legs { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.calc-leg { display: flex; gap: 10px; }
.calc-leg input { width: 100%; }
.calc-result { margin-top: 16px; padding: 16px; text-align: center; background: rgba(0,200,232,0.08); border: 1px solid rgba(0,200,232,0.3); border-radius: 10px; }
.calc-result .cr-label { font-family: 'Orbitron', sans-serif; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sepia); }
.calc-result .cr-value { font-family: 'Orbitron', sans-serif; font-size: 28px; font-weight: 800; color: var(--gold-light); margin-top: 4px; }
.calc-add { cursor: pointer; }
@media (max-width: 480px){ .calc-box input, .calc-box select { width: 140px; } .calc-row { flex-wrap: wrap; } }
