:root {
            --bg-dark: #1a1d24;
            --bg-card: #252a34;
            --gold: #FFD700;
            --white: #ffffff;
            --text-gray: #b1b1b1;
            --gradient-cta: linear-gradient(135deg, #FF6B35 0%, #FF2E63 100%);
            --transition: all 0.3s ease;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: var(--bg-dark); color: var(--white); line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        header { background-color: #0f1218; padding: 12px 15px; position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,215,0,0.2); }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: var(--gold); }
        .header-right { display: flex; gap: 8px; }
        .btn { border: none; border-radius: 6px; padding: 8px 14px; font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition); }
        .btn-login { background-color: transparent; color: var(--white); border: 1px solid var(--white); }
        .btn-register { background: var(--gradient-cta); color: var(--white); }
        .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: radial-gradient(circle, #2c3e50 0%, #000000 100%); padding: 20px; text-align: center; margin: 15px; border-radius: 15px; border: 2px solid var(--gold); box-shadow: 0 0 15px rgba(255,215,0,0.3); }
        .jackpot-label { color: var(--gold); font-size: 18px; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: #fff; text-shadow: 0 0 10px var(--gold); font-family: 'Courier New', monospace; }
        .intro-card { padding: 20px; margin: 15px; background: var(--bg-card); border-radius: 12px; }
        .intro-card h1 { font-size: 22px; color: var(--gold); margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 15px; color: var(--text-gray); }
        .section-title { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; border-left: 4px solid var(--gold); margin-left: 15px; }
        .section-title h2 { font-size: 18px; text-transform: uppercase; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-card); border-radius: 10px; overflow: hidden; transition: var(--transition); }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 8px; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: var(--text-gray); }
        .payment-methods { padding: 20px 15px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; opacity: 0.8; }
        .payment-methods i { font-size: 30px; color: var(--white); }
        .guidelines { padding: 20px 15px; display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guide-item { background: #1e222a; padding: 15px; border-radius: 10px; border-bottom: 2px solid var(--gold); }
        .guide-item h2 { font-size: 17px; margin-bottom: 8px; color: var(--gold); }
        .guide-item p { font-size: 14px; color: var(--text-gray); }
        .marquee-container { background: #0f1218; padding: 10px 0; overflow: hidden; margin: 20px 0; border-top: 1px solid #333; border-bottom: 1px solid #333; }
        .marquee-content { display: flex; animation: scroll 40s linear infinite; gap: 30px; width: max-content; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-tag { white-space: nowrap; font-size: 13px; color: var(--text-gray); }
        .winner-tag span { color: var(--gold); font-weight: bold; }
        .providers-wall { padding: 20px 15px; text-align: center; color: var(--text-gray); font-size: 14px; font-weight: 500; }
        .providers-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 20px; margin-top: 10px; }
        .reviews-section { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--bg-card); padding: 15px; border-radius: 12px; }
        .review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
        .user-meta { display: flex; align-items: center; gap: 8px; }
        .user-meta i { font-size: 20px; color: var(--gold); }
        .rating { color: #f1c40f; font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-gray); }
        .review-content { font-size: 14px; font-style: italic; color: var(--text-gray); }
        .faq-section { padding: 15px; }
        .faq-item { margin-bottom: 15px; background: #1e222a; padding: 15px; border-radius: 8px; }
        .faq-item h2 { font-size: 16px; color: var(--gold); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-gray); }
        .security-section { padding: 30px 15px; text-align: center; background: #0f1218; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--gold); }
        .age-limit { display: inline-block; border: 2px solid #e74c3c; color: #e74c3c; padding: 5px 10px; border-radius: 50%; font-weight: bold; margin-bottom: 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #0f1218; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1001; }
        .nav-item { text-align: center; color: var(--text-gray); font-size: 11px; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; display: block; }
        .nav-item:active { color: var(--gold); }
        footer { padding: 30px 15px 100px; background: #0a0c10; border-top: 1px solid #222; }
        .footer-contact { margin-bottom: 25px; }
        .footer-contact h2 { font-size: 16px; margin-bottom: 10px; }
        .contact-links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .contact-links a { font-size: 14px; color: var(--text-gray); }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-grid a { font-size: 13px; color: var(--text-gray); }
        .footer-copyright { text-align: center; font-size: 12px; color: #555; padding-top: 20px; border-top: 1px solid #222; }