:root {
            --primary: #D4AF37;
            --secondary: #FFD700;
            --accent: #00C853;
            --bg-base: #0B0E11;
            --bg-surface: #1E2329;
            --bg-card: #161A1E;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #848E9C;
            --border-default: #2B3139;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #D4AF37 100%);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-surface);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: var(--primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: opacity 0.2s;
        }
        .btn-login { background-color: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--gold-gradient); color: #000; }
        main { max-width: 1200px; margin: 0 auto; padding: 0; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: radial-gradient(circle, #2c0000 0%, #000000 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 2px solid var(--primary);
        }
        .jackpot-label { color: var(--secondary); font-size: 14px; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount {
            font-family: 'Roboto Mono', monospace;
            font-size: 32px;
            color: #ff0000;
            font-weight: 900;
            text-shadow: 0 0 10px rgba(255,0,0,0.7);
        }
        .intro-card { background: var(--bg-card); margin: 15px; padding: 20px; border-radius: 12px; border: 1px solid var(--border-default); }
        .intro-card h1 { font-size: 20px; color: var(--primary); margin-bottom: 10px; font-family: 'Montserrat', sans-serif; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); }
        .section-title { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; font-size: 20px; color: var(--primary); border-left: 4px solid var(--primary); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-card); border-radius: 10px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-default); }
        .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 { background: var(--bg-surface); margin: 25px 15px; padding: 20px; border-radius: 12px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .pl-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .pl-item i { font-size: 24px; color: var(--primary); }
        .pl-item span { font-size: 11px; color: var(--text-muted); }
        .guide-section { padding: 0 15px; display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guide-card { background: var(--bg-card); padding: 15px; border-radius: 10px; }
        .guide-card h2 { font-size: 18px; color: var(--secondary); margin-bottom: 10px; }
        .guide-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .winners-box { background: var(--bg-card); margin: 25px 15px; border-radius: 12px; overflow: hidden; border: 1px solid var(--border-default); }
        .winner-row { display: flex; justify-content: space-between; padding: 12px 15px; border-bottom: 1px solid var(--border-default); font-size: 13px; }
        .winner-row:last-child { border-bottom: none; }
        .winner-name { color: var(--secondary); }
        .winner-amount { color: var(--accent); font-weight: bold; }
        .provider-wall { display: flex; flex-wrap: wrap; gap: 10px; padding: 0 15px; }
        .provider-tag { flex: 1; min-width: 45%; background: var(--bg-surface); padding: 12px; border-radius: 8px; text-align: center; font-weight: bold; color: var(--primary); border: 1px solid var(--border-default); }
        .review-grid { display: grid; grid-template-columns: 1fr; gap: 15px; padding: 15px; }
        .review-card { background: var(--bg-card); padding: 15px; border-radius: 12px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 20px; color: var(--text-muted); }
        .review-stars { color: var(--secondary); font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 12px; color: var(--text-muted); }
        .faq-section { padding: 0 15px; margin-top: 30px; }
        .faq-item { background: var(--bg-card); margin-bottom: 10px; border-radius: 8px; border: 1px solid var(--border-default); padding: 15px; }
        .faq-item h3 { font-size: 16px; color: var(--secondary); margin-bottom: 10px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section { margin: 30px 15px; padding: 20px; background: #1a1a1a; border-radius: 12px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: var(--accent); }
        .security-text { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
        .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-default); z-index: 1001; }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-secondary); flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item span { font-size: 11px; }
        footer { background: var(--bg-surface); padding: 30px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-contact { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 25px; }
        .footer-contact a { color: var(--primary); text-decoration: none; font-size: 14px; border: 1px solid var(--border-default); padding: 8px 12px; border-radius: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .copyright { text-align: center; color: var(--text-muted); font-size: 12px; border-top: 1px solid var(--border-default); padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guide-section, .review-grid { grid-template-columns: 1fr 1fr; }
        }