:root {
            --primary: #D4AF37;
            --primary-hover: #F1C40F;
            --secondary: #1A1A1A;
            --accent: #FF4500;
            --bg-base: #0A0A0A;
            --bg-surface: #161616;
            --bg-elevated: #222222;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-brand: #D4AF37;
            --win-color: #FFD700;
            --border-default: #333333;
            --border-active: #D4AF37;
            --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-heading: 'Montserrat', 'Poppins', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--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(--text-primary); font-family: var(--font-heading); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        .btn-login { background-color: transparent; color: var(--text-primary); border: 1px solid var(--primary); }
        .btn-register { background-color: var(--primary); color: var(--secondary); }
        .btn-register:hover { background-color: var(--primary-hover); }
        main { width: 100%; max-width: 800px; margin: 0 auto; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(135deg, #161616 0%, #2c2c2c 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--primary);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title { font-family: var(--font-heading); color: var(--primary); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 36px; font-weight: 900; color: var(--win-color); font-family: 'Roboto Mono', monospace; }
        .intro-card { padding: 20px; margin: 15px; background: var(--bg-surface); border-radius: 12px; 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 { color: var(--text-secondary); font-size: 14px; }
        .section-title { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; font-family: var(--font-heading); font-size: 18px; border-left: 3px solid var(--accent); padding-left: 10px; }
        .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-img-wrapper { width: 100%; aspect-ratio: 1/1; overflow: hidden; }
        .game-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { color: var(--text-primary); font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-methods { background: var(--bg-surface); margin: 20px 15px; padding: 20px; border-radius: 12px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item i { font-size: 24px; color: var(--primary); margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 10px; color: var(--text-secondary); }
        .guide-section { padding: 0 15px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 10px; margin-bottom: 15px; }
        .guide-item h2 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .lottery-section { margin: 20px 15px; background: var(--bg-surface); border-radius: 12px; padding: 10px; }
        .lottery-row { display: flex; justify-content: space-between; padding: 10px; border-bottom: 1px solid var(--border-subtle); font-size: 12px; }
        .lottery-user { color: var(--text-brand); font-weight: bold; }
        .lottery-win { color: var(--win-color); font-weight: bold; }
        .providers-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-tag { background: var(--bg-elevated); color: var(--text-primary); padding: 12px; text-align: center; border-radius: 8px; font-weight: 600; border: 1px solid var(--border-default); }
        .comment-section { padding: 0 15px; }
        .comment-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 15px; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .avatar { width: 40px; height: 40px; background: var(--bg-elevated); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); }
        .stars { color: var(--win-color); font-size: 12px; }
        .faq-section { padding: 0 15px; }
        .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; color: var(--primary); border-bottom: 1px solid var(--border-subtle); }
        .faq-answer { padding: 15px; font-size: 13px; color: var(--text-secondary); }
        .security-section { text-align: center; padding: 30px 15px; background: var(--bg-surface); margin-top: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: var(--primary); }
        .age-limit { font-weight: bold; color: var(--accent); border: 2px solid var(--accent); display: inline-block; padding: 5px 10px; border-radius: 50%; margin-bottom: 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: var(--secondary); display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-default); z-index: 1000; }
        .nav-item { text-decoration: none; display: flex; flex-direction: column; align-items: center; color: var(--text-secondary); font-size: 11px; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item:active { color: var(--primary); }
        footer { background: var(--bg-base); padding: 40px 15px 100px; text-align: center; border-top: 1px solid var(--border-default); }
        .footer-social { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; }
        .footer-social a { color: var(--text-primary); text-decoration: none; font-size: 14px; background: var(--bg-surface); padding: 8px 15px; border-radius: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 12px; }
        .copyright { font-size: 11px; color: var(--text-muted); }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .providers-wall { grid-template-columns: repeat(4, 1fr); }
        }