:root {
            --primary: #D4AF37;
            --primary-light: #F9E076;
            --primary-dark: #996515;
            --secondary: #004D40;
            --accent: #FFD700;
            --bg-main: #0A0A0A;
            --bg-surface: #141414;
            --bg-overlay: #1E1E1E;
            --text-primary: #FFFFFF;
            --text-secondary: #BDBDBD;
            --text-muted: #757575;
            --text-action: #D4AF37;
            --success: #2E7D32;
            --error: #D32F2F;
            --win: #FFD700;
            --border-default: #333333;
            --border-active: #D4AF37;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-numbers: 'Oswald', sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { background-color: var(--bg-main); color: var(--text-primary); font-family: var(--font-body); line-height: 1.5; -webkit-tap-highlight-color: transparent; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }

        header { background: var(--bg-surface); 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-default); }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-family: var(--font-heading); font-size: 16px; font-weight: 500; color: var(--primary); }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: var(--bg-main); }
        .btn:active { transform: scale(0.95); }

        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; display: block; }

        .jackpot-container { background: linear-gradient(135deg, var(--secondary), #002D26); margin: 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid var(--primary-dark); position: relative; overflow: hidden; }
        .jackpot-title { font-family: var(--font-heading); font-size: 14px; color: var(--primary-light); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-family: var(--font-numbers); font-size: 36px; font-weight: 700; color: var(--win); text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }

        .intro-card { background: var(--bg-surface); margin: 15px; padding: 20px; border-radius: 15px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-family: var(--font-heading); font-size: 20px; color: var(--primary); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }

        section { padding: 0 15px 20px 15px; }
        .section-title { font-family: var(--font-heading); font-size: 18px; color: var(--text-primary); margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ''; width: 4px; height: 18px; background: var(--primary); border-radius: 2px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-default); transition: border-color 0.3s; }
        .game-card:hover { border-color: var(--primary); }
        .game-img { width: 100%; aspect-ratio: 1/1; position: relative; }
        .game-img img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; font-weight: 600; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info .provider { font-size: 12px; color: var(--text-muted); }

        .payment-license { background: var(--bg-surface); margin: 15px; padding: 20px; border-radius: 15px; 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-light); }
        .pl-item span { font-size: 10px; color: var(--text-secondary); white-space: nowrap; }

        .guide-grid { display: grid; gap: 15px; }
        .guide-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border-default); }
        .guide-card h2 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .guide-card p { font-size: 13px; color: var(--text-secondary); }

        .winners-ticker { background: var(--bg-overlay); padding: 10px; margin: 15px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); }
        .winners-track { display: inline-flex; animation: scroll-left 40s linear infinite; gap: 30px; }
        .winner-item { font-size: 13px; color: var(--text-secondary); }
        .winner-item span { color: var(--win); font-weight: 600; }
        @keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { background: var(--bg-surface); margin: 15px; padding: 20px; border-radius: 15px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .provider-name { font-family: var(--font-heading); font-size: 14px; color: var(--text-muted); font-weight: 700; opacity: 0.6; }

        .reviews-grid { display: flex; overflow-x: auto; gap: 15px; padding-bottom: 10px; scroll-snap-type: x mandatory; }
        .review-card { min-width: 280px; background: var(--bg-surface); padding: 20px; border-radius: 15px; scroll-snap-align: start; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
        .review-header i { font-size: 30px; color: var(--primary); }
        .review-user { font-weight: 600; font-size: 14px; }
        .review-stars { color: var(--win); font-size: 12px; margin: 5px 0; }
        .review-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }

        .faq-section { margin: 15px; }
        .faq-item { background: var(--bg-surface); border-radius: 10px; margin-bottom: 10px; padding: 15px; border: 1px solid var(--border-default); }
        .faq-item h3 { font-size: 15px; color: var(--primary-light); margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: var(--text-secondary); }

        .security-section { background: var(--bg-surface); margin: 15px; padding: 20px; border-radius: 15px; 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(--success); }
        .security-text { font-size: 12px; color: var(--text-muted); }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: #1A1A1A; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-default); z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 11px; }

        footer { background: var(--bg-surface); padding: 30px 15px; text-align: center; border-top: 1px solid var(--border-default); }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; }
        .footer-social a { font-size: 20px; color: var(--primary); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: left; margin-bottom: 25px; }
        .footer-links a { color: var(--text-secondary); font-size: 13px; }
        .footer-copy { font-size: 11px; color: var(--text-muted); padding-top: 20px; border-top: 1px solid var(--border-default); }