:root {
            --primary-gold: #D4AF37;
            --primary-gold-light: #F9A825;
            --secondary-black: #0A0A0A;
            --accent-red: #E63946;
            --bg-base: #0D0D0D;
            --bg-surface: #1A1A1A;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #666666;
            --border-default: #333333;
            --success: #00C853;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--primary-gold); }
        header {
            background: var(--bg-surface);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary-gold);
        }
        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: 500; color: var(--text-primary); }
        header .auth-btns { display: flex; gap: 8px; }
        header .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            text-decoration: none;
        }
        header .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--primary-gold); }
        header .btn-register { background: var(--primary-gold); color: var(--secondary-black); }
        main { padding-bottom: 80px; }
        .banner { width: 100%; cursor: pointer; display: block; }
        .banner img { width: 100%; height: auto; aspect-ratio: 2/1; object-fit: cover; }
        .jackpot-container {
            margin: 15px;
            background: linear-gradient(180deg, #1A1A1A 0%, #000000 100%);
            border: 1px solid var(--primary-gold);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
        }
        .jackpot-title { font-size: 14px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary-gold-light);
            margin-top: 10px;
            font-family: monospace;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }
        .intro-card { margin: 15px; padding: 20px; background: var(--bg-surface); border-radius: 15px; border-left: 4px solid var(--primary-gold); }
        .intro-card h1 { font-size: 24px; margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { font-size: 15px; color: var(--text-secondary); }
        .section-title { padding: 15px 15px 5px; font-size: 20px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 20px; background: var(--accent-red); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-item { background: var(--bg-surface); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-default); transition: transform 0.2s; }
        .game-item:active { transform: scale(0.95); }
        .game-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-item h3 { padding: 10px; font-size: 14px; text-align: center; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; }
        .payment-item { background: var(--bg-surface); padding: 12px 5px; border-radius: 8px; text-align: center; border: 1px solid var(--border-default); }
        .payment-item i { font-size: 24px; color: var(--primary-gold); margin-bottom: 8px; display: block; }
        .payment-item span { font-size: 11px; color: var(--text-secondary); }
        .guide-section { padding: 15px; }
        .guide-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-default); }
        .guide-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--primary-gold-light); }
        .guide-card p { font-size: 14px; color: var(--text-secondary); }
        .winner-list { padding: 15px; background: #000; margin: 15px; border-radius: 12px; }
        .winner-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-default); font-size: 13px; }
        .winner-item:last-child { border-bottom: none; }
        .winner-item .user { color: var(--success); font-weight: 600; }
        .winner-item .amount { color: var(--primary-gold); font-weight: 700; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-box { background: linear-gradient(45deg, #1a1a1a, #2a2a2a); padding: 15px; border-radius: 8px; text-align: center; font-weight: 700; font-size: 14px; color: var(--primary-gold); border: 1px solid var(--primary-gold); }
        .review-section { padding: 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .review-info h4 { font-size: 14px; }
        .stars { color: #FFD600; font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { margin-bottom: 15px; }
        .faq-item h3 { font-size: 16px; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }
        .faq-item h3::before { content: "Q:"; color: var(--accent-red); }
        .faq-item p { font-size: 14px; color: var(--text-secondary); padding-left: 25px; }
        .security-section { margin: 15px; padding: 20px; background: #111; border-radius: 12px; text-align: center; border: 1px dashed var(--text-muted); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary-gold); }
        .security-section p { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
        .security-links a { color: var(--primary-gold); text-decoration: underline; font-size: 12px; margin: 0 5px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
            padding-bottom: env(safe-area-inset-bottom);
        }
        .nav-item { text-decoration: none; text-align: center; color: var(--text-secondary); flex: 1; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 4px; }
        .nav-item span { font-size: 10px; font-weight: 600; }
        footer {
            background: var(--secondary-black);
            padding: 40px 20px 100px;
            text-align: center;
            border-top: 1px solid var(--border-default);
        }
        .footer-social { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; flex-wrap: wrap; }
        .footer-social a { color: var(--text-primary); text-decoration: none; font-size: 14px; border: 1px solid var(--border-default); padding: 8px 15px; border-radius: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: left; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .footer-links a:hover { color: var(--primary-gold); }
        .copyright { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); pt: 20px; margin-top: 20px; }