:root {
            --primary: #D4AF37;
            --secondary: #FFD700;
            --accent: #B8860B;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #D4AF37 100%);
            --bg-main: #0B0E11;
            --bg-surface: #151921;
            --bg-elevated: #1E232B;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B8C1;
            --text-muted: #707A8A;
            --win-color: #F0B90B;
            --border-subtle: #2C323A;
            --font-main: 'Montserrat', 'Inter', -apple-system, sans-serif;
            --font-display: 'Oswald', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-subtle);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .brand { display: flex; align-items: center; gap: 8px; }
        header .brand img { width: 25px; height: 25px; border-radius: 4px; }
        header .brand strong { font-size: 16px; font-weight: 400; color: var(--text-primary); }
        header .auth-buttons { display: flex; gap: 10px; }
        header button {
            padding: 6px 15px;
            border-radius: 4px;
            border: none;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--gold-gradient); color: var(--bg-main); }
        main { max-width: 800px; margin: 0 auto; padding: 15px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; margin-bottom: 20px; overflow: hidden; border-radius: 12px; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: var(--bg-elevated);
            border: 1px solid var(--primary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { color: var(--primary); font-family: var(--font-display); font-size: 18px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: var(--win-color); margin-top: 10px; font-family: var(--font-display); }
        .intro-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; margin-bottom: 20px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 24px; color: var(--secondary); margin-bottom: 12px; font-family: var(--font-display); }
        .intro-card p { font-size: 14px; color: var(--text-secondary); }
        h2 { font-size: 20px; color: var(--primary); margin: 25px 0 15px; font-family: var(--font-display); display: flex; align-items: center; gap: 10px; }
        h2::after { content: ''; flex: 1; height: 1px; background: var(--border-subtle); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-subtle); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; color: var(--text-primary); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-license-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 25px; }
        .pl-item { background: var(--bg-elevated); padding: 15px 5px; border-radius: 8px; text-align: center; border: 1px solid var(--border-subtle); }
        .pl-item i { font-size: 20px; color: var(--primary); margin-bottom: 5px; }
        .pl-item span { display: block; font-size: 10px; color: var(--text-muted); }
        .guide-section { margin-bottom: 25px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 12px; }
        .guide-item h3 { color: var(--secondary); margin-bottom: 8px; font-size: 16px; }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }
        .winner-records { background: var(--bg-surface); border-radius: 12px; padding: 15px; margin-bottom: 25px; }
        .winner-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-subtle); font-size: 12px; }
        .winner-item:last-child { border-bottom: none; }
        .winner-user { color: var(--primary); font-weight: bold; }
        .winner-game { color: var(--text-secondary); }
        .winner-amount { color: var(--win-color); font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .provider-item { background: var(--gold-gradient); color: var(--bg-main); padding: 12px; border-radius: 8px; text-align: center; font-weight: bold; font-size: 14px; }
        .review-card { background: var(--bg-elevated); padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--primary); }
        .review-user { font-weight: bold; font-size: 14px; }
        .stars { color: var(--secondary); font-size: 12px; margin-left: auto; }
        .review-content { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .faq-item { background: var(--bg-surface); border-radius: 12px; padding: 15px; margin-bottom: 10px; }
        .faq-item h3 { font-size: 15px; color: var(--primary); margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: var(--text-secondary); }
        .security-section { background: var(--bg-elevated); padding: 20px; border-radius: 12px; text-align: center; border: 1px dashed var(--primary); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary); }
        .security-text { font-size: 12px; color: var(--text-muted); }
        .security-links { margin-top: 10px; display: flex; justify-content: center; gap: 15px; }
        .security-links a { color: var(--secondary); font-size: 12px; text-decoration: none; font-weight: bold; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-subtle);
            z-index: 1000;
        }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-muted); flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item span { font-size: 10px; font-weight: 500; }
        footer { background: var(--bg-surface); padding: 30px 15px 100px; border-top: 1px solid var(--border-subtle); }
        .footer-contact { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-contact a { color: var(--text-secondary); text-decoration: none; font-size: 13px; border: 1px solid var(--border-subtle); padding: 5px 12px; border-radius: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-column a { display: block; color: var(--text-muted); text-decoration: none; font-size: 13px; margin-bottom: 8px; }
        .copyright { text-align: center; color: var(--text-muted); font-size: 12px; padding-top: 20px; border-top: 1px solid var(--border-subtle); }