:root {
            --primary-gold: #D4AF37;
            --primary-light: #F9E076;
            --primary-dark: #996515;
            --accent-red: #E63946;
            --main-bg: #0D0D0D;
            --surface-card: #1A1A1B;
            --surface-elevated: #252526;
            --overlay: rgba(0, 0, 0, 0.85);
            --text-high: #FFFFFF;
            --text-muted: #B0B0B0;
            --success-win: #00C853;
            --border-default: #333333;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--main-bg);
            color: var(--text-high);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--surface-card);
            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-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 500; color: var(--primary-gold); }
        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-high); border: 1px solid var(--border-default); }
        .btn-register { background: var(--primary-gold); color: var(--main-bg); }
        main { max-width: 1000px; margin: 0 auto; padding: 10px; }
        .banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            cursor: pointer;
        }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(135deg, var(--surface-elevated), #000);
            border: 2px solid var(--primary-gold);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
        }
        .jackpot-title { font-family: 'Montserrat', sans-serif; color: var(--primary-gold); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
        .jackpot-amount { font-family: 'Oswald', sans-serif; font-size: 36px; color: var(--primary-light); text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }
        .intro-card { background: var(--surface-card); padding: 20px; border-radius: 12px; margin-bottom: 20px; border-left: 4px solid var(--primary-gold); }
        h1 { font-family: 'Montserrat', sans-serif; font-size: 24px; color: var(--primary-gold); margin-bottom: 10px; line-height: 1.2; }
        .intro-card p { font-size: 14px; color: var(--text-muted); }
        h2 { font-family: 'Montserrat', sans-serif; font-size: 20px; margin: 25px 0 15px; color: var(--text-high); display: flex; align-items: center; gap: 10px; }
        h2::before { content: ''; width: 4px; height: 20px; background: var(--primary-gold); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
        .game-card { background: var(--surface-card); border-radius: 12px; overflow: hidden; text-decoration: none; transition: transform 0.2s; border: 1px solid var(--border-default); }
        .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: 10px; font-size: 14px; color: var(--text-high); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 25px; }
        .payment-item { background: var(--surface-elevated); padding: 15px 5px; border-radius: 8px; text-align: center; font-size: 10px; color: var(--text-muted); display: flex; flex-direction: column; gap: 8px; }
        .payment-item i { font-size: 20px; color: var(--primary-gold); }
        .guide-section { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .guide-item { background: var(--surface-card); padding: 15px; border-radius: 12px; border: 1px solid var(--border-default); }
        .guide-item h3 { color: var(--primary-light); font-size: 16px; margin-bottom: 8px; }
        .guide-item p { font-size: 14px; color: var(--text-muted); }
        .lottery-container { background: var(--surface-card); border-radius: 12px; padding: 10px; margin-bottom: 25px; }
        .lottery-row { display: flex; justify-content: space-between; padding: 10px; border-bottom: 1px solid var(--border-default); font-size: 12px; }
        .lottery-row:last-child { border-bottom: none; }
        .lottery-user { color: var(--primary-gold); font-weight: 600; }
        .lottery-amount { color: var(--success-win); font-weight: 700; }
        .providers-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .provider-tag { background: var(--surface-elevated); color: var(--primary-gold); padding: 12px; border-radius: 8px; text-align: center; font-weight: 600; font-size: 13px; border: 1px solid rgba(212, 175, 55, 0.2); }
        .comment-grid { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .comment-card { background: var(--surface-card); padding: 15px; border-radius: 12px; border: 1px solid var(--border-default); }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-avatar { width: 35px; height: 35px; background: var(--surface-elevated); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-gold); }
        .comment-info h3 { font-size: 14px; color: var(--text-high); }
        .stars { color: var(--primary-gold); font-size: 12px; }
        .comment-content { font-size: 13px; color: var(--text-muted); font-style: italic; }
        .faq-section { display: flex; flex-direction: column; gap: 10px; margin-bottom: 25px; }
        details { background: var(--surface-card); border-radius: 8px; overflow: hidden; border: 1px solid var(--border-default); }
        summary { padding: 15px; cursor: pointer; font-weight: 600; color: var(--primary-gold); list-style: none; display: flex; justify-content: space-between; align-items: center; }
        summary::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 12px; }
        details[open] summary::after { content: '\f077'; }
        .faq-content { padding: 0 15px 15px; font-size: 14px; color: var(--text-muted); }
        .security-section { background: var(--surface-elevated); padding: 20px; border-radius: 12px; text-align: center; margin-bottom: 25px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary-gold); }
        .security-text { font-size: 12px; color: var(--text-muted); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--surface-card); border-top: 1px solid var(--border-default); display: flex; justify-content: space-around; padding: 10px 0; z-index: 1000; }
        .nav-item { text-decoration: none; color: var(--text-muted); display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active, .nav-item:active { color: var(--primary-gold); }
        footer { background: #050505; padding: 30px 15px 100px; text-align: center; border-top: 1px solid var(--border-default); }
        .footer-contact { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-contact a { color: var(--text-muted); text-decoration: none; font-size: 13px; display: flex; align-items: center; gap: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: left; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; display: block; margin-bottom: 8px; }
        .footer-copyright { font-size: 12px; color: #555; border-top: 1px solid #222; padding-top: 20px; }