:root {
            --primary: #D4AF37;
            --primary-variant: #F9E076;
            --secondary: #B22222;
            --accent: #00C853;
            --bg-base: #0A0A0A;
            --bg-surface: #121212;
            --bg-overlay: #1E1E1E;
            --bg-highlight: #2A2A2A;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #757575;
            --gold-text: #FFD700;
            --border-subtle: #333333;
            --border-active: #D4AF37;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Oswald', sans-serif; text-transform: uppercase; }

        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-subtle);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--gold-text); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            border: none;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-subtle); }
        .btn-register { background: var(--primary); color: #000; }

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

        .jackpot-container {
            background: linear-gradient(135deg, #1e1e1e, #0a0a0a);
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin: 20px 0;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
        }
        .jackpot-label { color: var(--gold-text); font-size: 18px; font-weight: bold; margin-bottom: 5px; }
        .jackpot-amount { 
            font-size: 32px; 
            font-family: 'Oswald', sans-serif; 
            color: var(--primary-variant);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

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

        .section-title { margin: 25px 0 15px; font-size: 20px; border-left: 3px solid var(--secondary); padding-left: 10px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card {
            background: var(--bg-overlay);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid var(--border-subtle);
        }
        .game-card:active { transform: scale(0.97); }
        .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; }

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

        .guide-section { margin: 30px 0; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 10px; border: 1px solid var(--border-subtle); }
        .guide-item h3 { color: var(--primary-variant); font-size: 16px; margin-bottom: 8px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }

        .lottery-section { background: var(--bg-surface); padding: 15px; border-radius: 15px; }
        .lottery-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 13px;
        }
        .lottery-item:last-child { border-bottom: none; }
        .lottery-user { color: var(--primary); font-weight: bold; }
        .lottery-win { color: var(--accent); font-weight: bold; }

        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
        .provider-tag { flex: 1 1 45%; background: var(--bg-highlight); padding: 12px; border-radius: 8px; text-align: center; color: var(--gold-text); font-weight: bold; font-size: 14px; border: 1px solid var(--border-subtle); }

        .comment-grid { display: flex; flex-direction: column; gap: 15px; }
        .comment-card { background: var(--bg-overlay); padding: 15px; border-radius: 12px; border: 1px solid var(--border-subtle); }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-avatar { width: 35px; height: 35px; background: var(--bg-highlight); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); }
        .comment-info { flex-grow: 1; }
        .comment-name { font-size: 14px; font-weight: bold; display: block; }
        .comment-stars { color: var(--primary); font-size: 12px; }
        .comment-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }

        .faq-section { margin: 30px 0; }
        .faq-item { background: var(--bg-surface); border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; font-size: 15px; color: var(--primary-variant); border-bottom: 1px solid var(--border-subtle); cursor: pointer; }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-secondary); background: var(--bg-overlay); }

        .security-section {
            background: linear-gradient(to bottom, var(--bg-highlight), var(--bg-base));
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px dashed var(--primary);
        }
        .security-icons { display: flex; justify-content: center; gap: 15px; margin-bottom: 15px; color: var(--accent); font-size: 24px; }
        .security-text { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
        .security-links a { color: var(--primary); text-decoration: none; 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-subtle);
            z-index: 1001;
            padding-bottom: 5px;
        }
        .nav-item { text-decoration: none; display: flex; flex-direction: column; align-items: center; color: var(--text-secondary); }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item span { font-size: 11px; }

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