:root {
            --bg-color: #1a1d24;
            --card-bg: #252a34;
            --gold: #FFD700;
            --white: #ffffff;
            --text-gray: #a0a0a0;
            --cta-gradient: linear-gradient(135deg, #FF6B35, #FF2E63);
            --shadow: 0 4px 15px rgba(0,0,0,0.5);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: var(--bg-color); color: var(--white); line-height: 1.6; overflow-x: hidden; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background: #11141a; padding: 10px 15px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .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: normal; color: var(--gold); }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background: transparent; color: var(--white); border: 1px solid var(--white); }
        .btn-register { background: var(--cta-gradient); color: var(--white); }
        .btn:active { transform: scale(0.95); }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: #11141a; margin: 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid var(--gold); box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); }
        .jackpot-title { font-size: 14px; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: var(--white); text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); font-family: monospace; }
        .intro-card { margin: 15px; padding: 20px; background: var(--card-bg); border-radius: 15px; border-left: 5px solid var(--gold); }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; color: var(--gold); }
        .intro-card p { font-size: 14px; color: var(--text-gray); }
        .section-title { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; font-size: 18px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 18px; background: var(--cta-gradient); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.2s; }
        .game-card:hover { transform: translateY(-5px); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; }
        .game-info p { font-size: 11px; color: var(--text-gray); }
        .payment-section { background: #11141a; padding: 20px 15px; margin: 20px 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; opacity: 0.8; }
        .payment-icon { height: 30px; filter: grayscale(1) brightness(2); }
        .guidelines-grid { padding: 0 15px; display: grid; gap: 15px; }
        .guide-item { background: var(--card-bg); padding: 15px; border-radius: 12px; border-top: 2px solid #333; }
        .guide-item h2 { font-size: 16px; margin-bottom: 8px; color: var(--gold); }
        .guide-item p { font-size: 13px; color: var(--text-gray); }
        .winners-marquee { background: #11141a; padding: 10px 0; margin: 20px 0; overflow: hidden; border-top: 1px solid #222; border-bottom: 1px solid #222; }
        .marquee-content { display: flex; animation: scroll 40s linear infinite; gap: 30px; width: max-content; }
        .winner-tag { white-space: nowrap; font-size: 12px; color: var(--text-gray); background: rgba(255,255,255,0.05); padding: 5px 15px; border-radius: 20px; }
        .winner-tag span { color: var(--gold); font-weight: bold; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { padding: 15px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .provider-tag { background: #11141a; border: 1px solid #333; padding: 8px 15px; border-radius: 8px; font-size: 12px; color: var(--text-gray); }
        .reviews-grid { padding: 0 15px; display: grid; gap: 15px; }
        .review-card { background: var(--card-bg); padding: 15px; border-radius: 12px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--gold); }
        .review-user h4 { font-size: 14px; }
        .review-stars { color: var(--gold); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-gray); font-style: italic; }
        .review-date { font-size: 11px; color: #555; margin-top: 10px; }
        .faq-section { padding: 0 15px; margin-bottom: 30px; }
        .faq-item { background: #11141a; margin-bottom: 10px; padding: 15px; border-radius: 10px; border: 1px solid #222; }
        .faq-item h2 { font-size: 15px; margin-bottom: 10px; color: var(--gold); }
        .faq-item p { font-size: 13px; color: var(--text-gray); }
        .security-section { background: #11141a; padding: 25px 15px; text-align: center; border-top: 2px solid var(--card-bg); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--gold); }
        .security-text { font-size: 12px; color: var(--text-gray); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #11141a; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 2000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: var(--text-gray); }
        .nav-item i { font-size: 18px; }
        .nav-item:nth-child(3) { background: var(--cta-gradient); width: 50px; height: 50px; border-radius: 50%; color: white; justify-content: center; margin-top: -25px; border: 4px solid var(--bg-color); }
        footer { background: #0a0c10; padding: 40px 15px 100px; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-social a { color: var(--text-gray); font-size: 14px; text-decoration: underline; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; margin-bottom: 30px; text-align: center; }
        .footer-links a { font-size: 12px; color: var(--text-gray); display: block; margin-bottom: 8px; }
        .copyright { text-align: center; font-size: 11px; color: #555; border-top: 1px solid #222; pt-20px; }