:root {
            --bg-primary: #0A0B0D;
            --bg-secondary: #14171C;
            --bg-surface: #1E232B;
            --gold-primary: #D4AF37;
            --gold-light: #F9E076;
            --gold-dark: #996515;
            --accent-red: #E01E26;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-gold: #F5C518;
            --border-default: #2D3139;
            --font-display: 'Montserrat', 'Inter', -apple-system, sans-serif;
            --font-body: 'Inter', 'Roboto', sans-serif;
            --font-numeric: 'Oswald', sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: var(--bg-primary); color: var(--text-primary); font-family: var(--font-body); line-height: 1.5; overflow-x: hidden; }

        header {
            background-color: var(--bg-secondary);
            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: 10px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--gold-primary); font-family: var(--font-display); }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; border: none; font-weight: 600; cursor: pointer; font-size: 14px; transition: 0.3s; }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--gold-primary); }
        .btn-register { background: var(--gold-primary); color: var(--bg-primary); }

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

        .jackpot-card { background: linear-gradient(145deg, #1e232b, #0a0b0d); border: 2px solid var(--gold-primary); border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 20px; }
        .jackpot-title { color: var(--gold-light); font-family: var(--font-display); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-family: var(--font-numeric); font-size: 36px; color: var(--text-gold); text-shadow: 0 0 10px rgba(245, 197, 24, 0.5); }

        .intro-card { background: var(--bg-surface); border-radius: 12px; padding: 20px; margin-bottom: 20px; border-left: 4px solid var(--gold-primary); }
        h1 { font-family: var(--font-display); font-size: 24px; color: var(--gold-primary); margin-bottom: 10px; }
        h2 { font-family: var(--font-display); font-size: 20px; color: var(--gold-primary); margin: 25px 0 15px; border-left: 4px solid var(--accent-red); padding-left: 10px; }
        h3 { font-size: 14px; margin-top: 8px; font-weight: 500; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .grid-games { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; text-decoration: none; display: block; border: 1px solid var(--border-default); transition: 0.3s; }
        .game-image { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; text-align: center; }

        .trust-section { background: var(--bg-secondary); padding: 20px; border-radius: 12px; margin: 20px 0; }
        .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .trust-item i { font-size: 24px; color: var(--gold-primary); margin-bottom: 5px; }
        .trust-item span { font-size: 10px; display: block; color: var(--text-secondary); }

        .guide-section { background: var(--bg-surface); border-radius: 12px; padding: 20px; margin-bottom: 20px; }
        .guide-item { margin-bottom: 15px; border-bottom: 1px solid var(--border-default); padding-bottom: 15px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }

        .lottery-container { background: #14171c; border-radius: 12px; padding: 15px; max-height: 300px; overflow-y: auto; }
        .lottery-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 12px; }
        .lottery-user { color: var(--gold-light); }
        .lottery-win { color: var(--success, #00C853); font-weight: bold; }

        .provider-wall { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
        .provider-tag { flex: 1 1 calc(50% - 10px); background: linear-gradient(90deg, #996515, #D4AF37); color: #000; padding: 10px; text-align: center; border-radius: 5px; font-weight: bold; font-size: 12px; }

        .review-card { background: var(--bg-surface); border-radius: 12px; padding: 15px; 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(--gold-primary); }
        .star-rating { color: #FFD700; font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); font-style: italic; }

        .faq-item { background: var(--bg-secondary); border-radius: 8px; padding: 15px; margin-bottom: 10px; }
        .faq-question { font-weight: 600; color: var(--gold-primary); margin-bottom: 8px; font-size: 15px; }
        .faq-answer { font-size: 14px; color: var(--text-secondary); }

        .security-badge { text-align: center; padding: 20px; border: 1px dashed var(--gold-primary); border-radius: 12px; }
        .security-badge p { font-size: 12px; color: var(--text-secondary); margin: 10px 0; }
        .age-limit { display: inline-block; border: 2px solid var(--accent-red); color: var(--accent-red); border-radius: 50%; width: 40px; height: 40px; line-height: 36px; font-weight: bold; font-size: 18px; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-secondary); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--border-default); z-index: 1000; }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-secondary); font-size: 11px; flex: 1; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 4px; color: var(--gold-primary); }

        footer { background: var(--bg-secondary); padding: 30px 15px 100px; border-top: 1px solid var(--border-default); text-align: center; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 20px 0; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .contact-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .contact-links a { color: var(--gold-primary); font-size: 14px; text-decoration: none; }
        .copyright { font-size: 12px; color: var(--text-secondary); margin-top: 20px; }

        @keyframes countUp {
            from { opacity: 0.5; }
            to { opacity: 1; }
        }