:root {
            --primary: #D4AF37;
            --primary-light: #FAFAD2;
            --primary-dark: #996515;
            --secondary: #E01E23;
            --accent: #FFD700;
            --bg-main: #0A0B0C;
            --bg-surface: #16181A;
            --bg-elevated: #222528;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --success: #28A745;
            --border-default: #2F3336;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Montserrat', sans-serif;
            line-height: 1.5;
            -webkit-tap-highlight-color: transparent;
        }

        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            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; object-fit: contain; }
        .header-left strong { 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;
            text-transform: uppercase;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #000; }

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

        .jackpot-section {
            background: var(--bg-elevated);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary-dark);
        }
        .jackpot-label { font-family: 'Oswald', sans-serif; color: var(--accent); font-size: 18px; margin-bottom: 5px; }
        .jackpot-amount { font-family: 'Oswald', sans-serif; font-size: 32px; font-weight: 900; color: var(--primary-light); text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }

        .intro-card { padding: 20px; margin: 15px; background: var(--bg-surface); border-radius: 12px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-family: 'Oswald', sans-serif; font-size: 24px; color: var(--primary); margin-bottom: 10px; line-height: 1.2; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); }

        .section-title { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
        .section-title h2 { font-family: 'Oswald', sans-serif; font-size: 20px; text-transform: uppercase; border-bottom: 2px solid var(--primary); }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-default); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 8px; font-size: 14px; color: var(--text-primary); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

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

        .guide-section { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-card { background: var(--bg-surface); padding: 15px; border-radius: 8px; }
        .guide-card h3 { color: var(--accent); margin-bottom: 8px; font-size: 16px; }
        .guide-card p { font-size: 13px; color: var(--text-secondary); text-align: justify; }

        .lottery-section { margin: 20px 15px; background: var(--bg-modal); border-radius: 12px; padding: 15px; }
        .lottery-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border-default); font-size: 12px; }
        .lottery-user { color: var(--primary); font-weight: 600; }
        .lottery-win { color: var(--success); font-weight: bold; }

        .providers-wall { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 15px; margin-bottom: 25px; }
        .provider-tag { background: linear-gradient(to right, #1a1c1e, #2c2f33); padding: 8px 15px; border-radius: 4px; font-size: 12px; color: var(--primary-light); border-left: 2px solid var(--primary); flex: 1 1 calc(50% - 10px); text-align: center; }

        .comment-section { padding: 0 15px; }
        .comment-card { background: var(--bg-elevated); padding: 15px; border-radius: 10px; margin-bottom: 12px; border: 1px solid var(--border-default); }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 20px; color: var(--text-secondary); }
        .stars { color: var(--accent); font-size: 12px; }
        .comment-content { font-size: 13px; font-style: italic; color: var(--text-secondary); margin-bottom: 8px; }
        .comment-date { font-size: 11px; color: var(--placeholder); text-align: right; }

        .faq-section { padding: 0 15px; margin-bottom: 30px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--primary-light); }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: var(--text-secondary); display: block; }

        .security-section { text-align: center; padding: 20px 15px; background: #000; border-top: 1px solid var(--primary-dark); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary); }
        .security-text { font-size: 12px; color: var(--text-secondary); margin-bottom: 10px; }
        .age-limit { display: inline-block; border: 2px solid var(--secondary); color: var(--secondary); padding: 2px 8px; border-radius: 50%; font-weight: bold; margin-bottom: 10px; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 600px;
            background: var(--bg-modal);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { text-decoration: none; color: var(--text-secondary); display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; }
        .nav-item i { font-size: 18px; }
        .nav-item:active { color: var(--primary); }

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