:root {
            --primary-gold: #FFD700;
            --secondary-gold: #DAA520;
            --accent-orange: #FF4500;
            --grad-gold: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --bg-p: #0A0A0A;
            --bg-s: #141414;
            --bg-e: #1F1F1F;
            --text-p: #FFFFFF;
            --text-s: #B0B0B0;
            --border-d: #2D2D2D;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-p);
            color: var(--text-p);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            background-color: var(--bg-s);
            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-d);
        }
        .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: 400; color: var(--text-p); }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-reg {
            padding: 6px 15px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--primary-gold); border: 1px solid var(--primary-gold); }
        .btn-reg { background: var(--grad-gold); color: #000; }
        main { padding-bottom: 80px; }
        .banner { width: 100%; cursor: pointer; display: block; }
        .banner img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; }
        .jackpot-container {
            background: var(--bg-e);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--secondary-gold);
        }
        .jackpot-title { color: var(--primary-gold); font-family: 'Montserrat', sans-serif; font-size: 14px; text-transform: uppercase; margin-bottom: 5px; }
        #jackpot-amount { font-size: 32px; font-weight: 900; color: #fff; text-shadow: 0 0 10px rgba(255,215,0,0.5); }
        .intro-section { padding: 20px 15px; text-align: center; }
        .intro-section h1 { font-family: 'Montserrat', sans-serif; font-size: 24px; color: var(--primary-gold); margin-bottom: 10px; }
        .intro-section p { color: var(--text-s); font-size: 14px; }
        .section-title { padding: 15px; font-size: 20px; font-family: 'Montserrat', sans-serif; color: var(--primary-gold); display: flex; align-items: center; gap: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-s); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-d); text-decoration: none; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
        .game-card h3 { padding: 8px; font-size: 14px; color: #fff; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; }
        .payment-item { background: var(--bg-e); padding: 10px; border-radius: 8px; text-align: center; font-size: 10px; color: var(--text-s); }
        .payment-item i { font-size: 20px; color: var(--primary-gold); margin-bottom: 5px; display: block; }
        .guides-container { padding: 15px; }
        .guide-item { background: var(--bg-s); padding: 15px; border-radius: 10px; margin-bottom: 15px; border-left: 4px solid var(--primary-gold); }
        .guide-item h3 { color: var(--primary-gold); margin-bottom: 8px; font-size: 16px; }
        .guide-item p { color: var(--text-s); font-size: 13px; }
        .lottery-marquee { background: #000; padding: 10px 0; margin: 20px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid var(--border-d); border-bottom: 1px solid var(--border-d); }
        .marquee-content { display: inline-block; animation: scrollMarquee 40s linear infinite; }
        @keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .lottery-item { display: inline-flex; align-items: center; gap: 10px; background: var(--bg-e); padding: 5px 15px; border-radius: 20px; margin-right: 15px; font-size: 12px; }
        .lottery-item span { color: var(--primary-gold); font-weight: bold; }
        .providers-wall { padding: 15px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-box { padding: 12px; text-align: center; border-radius: 6px; font-weight: bold; font-size: 14px; color: #000; }
        .provider-box:nth-child(odd) { background: var(--grad-gold); }
        .provider-box:nth-child(even) { background: #DAA520; }
        .comment-section { padding: 15px; }
        .comment-card { background: var(--bg-s); border-radius: 12px; padding: 15px; margin-bottom: 15px; border: 1px solid var(--border-d); }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-user i { font-size: 24px; color: var(--primary-gold); }
        .comment-name { font-weight: 600; font-size: 14px; }
        .comment-stars { color: #FFD700; font-size: 12px; margin-bottom: 8px; }
        .comment-text { font-size: 13px; color: var(--text-s); margin-bottom: 8px; }
        .comment-date { font-size: 11px; color: var(--muted); }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-e); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-d); }
        .faq-answer { padding: 15px; font-size: 13px; color: var(--text-s); }
        .security-section { padding: 20px 15px; text-align: center; border-top: 1px solid var(--border-d); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
        .security-icons i { font-size: 30px; color: var(--primary-gold); }
        .security-text { font-size: 12px; color: var(--text-s); max-width: 300px; margin: 0 auto; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--bg-s); height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-d); z-index: 1000; }
        .nav-item { text-decoration: none; text-align: center; color: var(--text-s); display: flex; flex-direction: column; align-items: center; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 11px; }
        .nav-item:nth-child(3) i { color: var(--primary-gold); font-size: 24px; }
        footer { background: #000; padding: 30px 15px 100px; text-align: center; }
        .footer-contact { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-contact a { color: var(--primary-gold); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { color: var(--text-s); text-decoration: none; font-size: 12px; }
        .footer-copy { font-size: 11px; color: var(--muted); border-top: 1px solid var(--border-d); padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .header-left img { width: 35px; height: 35px; }
            .header-left strong { font-size: 20px; }
        }