:root {
            --primary: #FFD700;
            --primary-hover: #E6C200;
            --secondary: #00A86B;
            --accent: #FF4500;
            --gold-gradient: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
            --bg-main: #050505;
            --surface-1: #121212;
            --surface-2: #1E1E1E;
            --surface-3: #2A2A2A;
            --text-1: #FFFFFF;
            --text-2: #B0B0B0;
            --text-3: #757575;
            --border-subtle: #262626;
            --border-active: #FFD700;
            --win: #00FF7F;
            --font-h: 'Montserrat', system-ui, sans-serif;
            --font-b: 'Inter', system-ui, sans-serif;
            --font-n: 'Roboto Mono', monospace;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-1);
            font-family: var(--font-b);
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--surface-1);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-subtle);
        }
        header .brand {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--text-1);
        }
        header .brand img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }
        header .brand strong {
            font-size: 16px;
            font-weight: 400;
            font-family: var(--font-h);
        }
        header .auth-btns {
            display: flex;
            gap: 10px;
        }
        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 0.875rem;
            transition: all 0.3s ease;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-reg { background: var(--gold-gradient); color: #000; }
        .banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            cursor: pointer;
            display: block;
        }
        .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-container {
            background: var(--surface-2);
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--border-subtle);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
        }
        .jackpot-label {
            color: var(--primary);
            font-family: var(--font-h);
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }
        #jackpot-amount {
            font-family: var(--font-n);
            font-size: 2rem;
            font-weight: 900;
            color: var(--win);
            text-shadow: 0 0 10px rgba(0, 255, 127, 0.5);
        }
        .intro-card {
            padding: 20px;
            margin: 15px;
            background: var(--surface-1);
            border-radius: 15px;
        }
        h1 {
            font-family: var(--font-h);
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1.2;
        }
        h2 {
            font-family: var(--font-h);
            font-size: 1.25rem;
            margin: 25px 15px 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--primary);
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background: var(--surface-2);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid var(--border-subtle);
        }
        .game-card:active { transform: scale(0.95); }
        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }
        .game-card h3 {
            padding: 10px;
            font-size: 0.875rem;
            color: var(--text-1);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            text-align: center;
        }
        .payments {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 15px;
            margin: 15px;
            background: var(--surface-1);
            border-radius: 12px;
        }
        .pay-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 0.65rem;
            color: var(--text-2);
            text-align: center;
            gap: 5px;
        }
        .pay-item i { font-size: 1.5rem; color: var(--primary); }
        .guides { padding: 0 15px; }
        .guide-box {
            background: var(--surface-2);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
        }
        .guide-box h3 { margin-bottom: 10px; color: var(--secondary); font-size: 1rem; }
        .guide-box p { font-size: 0.875rem; color: var(--text-2); }
        .marquee-wrapper {
            background: var(--surface-3);
            margin: 15px 0;
            overflow: hidden;
            padding: 10px 0;
            border-top: 1px solid var(--primary);
            border-bottom: 1px solid var(--primary);
        }
        .marquee-content {
            display: flex;
            animation: scroll 40s linear infinite;
            white-space: nowrap;
        }
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .win-tag {
            background: var(--surface-1);
            padding: 10px 15px;
            margin: 0 10px;
            border-radius: 8px;
            border-left: 3px solid var(--win);
            display: inline-block;
        }
        .win-tag b { color: var(--win); }
        .providers-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 0 15px;
            margin-bottom: 25px;
        }
        .provider-item {
            background: var(--surface-2);
            padding: 12px;
            text-align: center;
            border-radius: 8px;
            font-weight: bold;
            font-size: 0.9rem;
            color: var(--primary);
            border: 1px solid var(--border-subtle);
        }
        .review-card {
            background: var(--surface-1);
            margin: 15px;
            padding: 15px;
            border-radius: 12px;
            border: 1px solid var(--border-subtle);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 1.5rem; color: var(--text-3); }
        .stars { color: var(--primary); font-size: 0.8rem; }
        .review-date { font-size: 0.75rem; color: var(--text-3); margin-top: 10px; }
        .faq-section { padding: 0 15px; }
        .faq-item { margin-bottom: 20px; background: var(--surface-2); padding: 15px; border-radius: 12px; }
        .faq-item h3 { color: var(--primary); margin-bottom: 8px; font-size: 1rem; }
        .faq-item p { color: var(--text-2); font-size: 0.875rem; }
        .safety-box {
            margin: 20px 15px;
            padding: 20px;
            background: linear-gradient(to bottom, #1a1a1a, #050505);
            border-radius: 15px;
            border: 1px solid var(--border-subtle);
            text-align: center;
        }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 2rem; color: var(--secondary); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background: var(--surface-1);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-subtle);
            z-index: 1000;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-2);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 0.7rem;
            gap: 4px;
        }
        .nav-item i { font-size: 1.25rem; }
        .nav-item:active { color: var(--primary); }
        footer {
            background: var(--surface-1);
            padding: 30px 15px 100px;
            border-top: 1px solid var(--border-subtle);
            color: var(--text-2);
        }
        footer .contact-row {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 25px;
            justify-content: center;
        }
        footer .contact-row a { color: var(--primary); text-decoration: none; font-size: 0.875rem; }
        footer .links-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        footer .links-grid a { color: var(--text-2); text-decoration: none; font-size: 0.8rem; }
        footer .copyright {
            text-align: center;
            font-size: 0.75rem;
            color: var(--text-3);
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
        }