:root {
            --primary-gold: #D4AF37;
            --secondary-gold: #FFD700;
            --accent-red: #E63946;
            --action-blue: #007BFF;
            --bg-base: #0A0A0A;
            --bg-surface: #161616;
            --bg-elevated: #222222;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #757575;
            --success: #28A745;
            --border-default: #333333;
        }
        * { 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;
            -webkit-tap-highlight-color: transparent;
        }
        h1, h2, h3 { font-family: 'Bebas Neue', cursive; letter-spacing: 1px; }
        a { text-decoration: none; color: inherit; }
        
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 400; color: var(--primary-gold); }
        .header-right { display: flex; gap: 10px; }
        .btn-login { padding: 6px 15px; border-radius: 20px; border: 1px solid var(--primary-gold); color: var(--primary-gold); font-size: 14px; font-weight: 600; }
        .btn-register { padding: 6px 15px; border-radius: 20px; background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold)); color: #000; font-size: 14px; font-weight: 700; }

        main { max-width: 600px; margin: 0 auto; padding-bottom: 80px; }
        
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-box {
            margin: 15px;
            background: linear-gradient(180deg, #222, #000);
            border: 2px solid var(--primary-gold);
            border-radius: 12px;
            padding: 15px;
            text-align: center;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
        }
        .jackpot-title { font-size: 14px; color: var(--secondary-gold); text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { font-family: 'Bebas Neue', cursive; font-size: 40px; color: #fff; text-shadow: 0 0 10px var(--primary-gold); }

        .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: 10px; color: var(--primary-gold); }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }

        .section-title { padding: 15px 15px 5px; font-size: 20px; display: flex; align-items: center; gap: 10px; }
        .section-title i { color: var(--accent-red); }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: var(--bg-elevated); border-radius: 10px; overflow: hidden; position: relative; border: 1px solid #333; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-family: 'Montserrat', sans-serif; font-size: 13px; padding: 8px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .payment-license { margin: 15px; background: var(--bg-surface); padding: 15px; border-radius: 15px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
        .pl-item { text-align: center; font-size: 10px; color: var(--text-muted); }
        .pl-item i { display: block; font-size: 24px; color: var(--primary-gold); margin-bottom: 5px; }

        .guides-container { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 10px; }
        .guide-item h2 { font-size: 18px; margin-bottom: 8px; color: var(--secondary-gold); }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }

        .lottery-section { margin: 15px; background: #111; border-radius: 10px; padding: 10px; overflow: hidden; }
        .lottery-item { display: flex; justify-content: space-between; padding: 8px 5px; border-bottom: 1px solid #222; font-size: 12px; }
        .lottery-user { color: var(--action-blue); font-weight: bold; }
        .lottery-win { color: var(--success); font-weight: bold; }

        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-tag { background: linear-gradient(90deg, #1a1a1a, #2a2a2a); border: 1px solid #444; padding: 10px; text-align: center; border-radius: 5px; font-weight: bold; color: var(--primary-gold); }

        .comments-section { padding: 15px; }
        .comment-card { background: var(--bg-surface); border-radius: 12px; padding: 15px; margin-bottom: 15px; border: 1px solid #333; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-user i { font-size: 20px; color: var(--text-muted); }
        .comment-stars { color: var(--secondary-gold); font-size: 12px; }
        .comment-content { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
        .comment-date { font-size: 11px; color: var(--text-muted); }

        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-elevated); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 12px 15px; font-weight: 600; color: var(--primary-gold); font-size: 14px; border-bottom: 1px solid #333; }
        .faq-answer { padding: 12px 15px; font-size: 13px; color: var(--text-secondary); text-align: justify; }

        .security-section { margin: 15px; padding: 20px; background: #000; border: 1px solid #222; border-radius: 15px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: var(--success); }
        .security-text { font-size: 12px; color: var(--text-muted); }

        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            max-width: 600px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 2px solid var(--primary-gold);
            z-index: 1001;
        }
        .nav-item { text-align: center; font-size: 11px; color: var(--text-secondary); flex: 1; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 3px; color: var(--primary-gold); }

        footer {
            background: #050505;
            padding: 30px 15px 100px;
            text-align: center;
            border-top: 1px solid #222;
        }
        .footer-social { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-social a { color: var(--text-secondary); font-size: 14px; text-decoration: underline; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { font-size: 13px; color: var(--text-muted); }
        .footer-copy { font-size: 12px; color: var(--text-muted); border-top: 1px solid #222; padding-top: 15px; }

        @media (min-width: 601px) {
            header { padding: 0 20%; }
            .navigator { max-width: 400px; border-radius: 30px 30px 0 0; }
        }