:root {
            --bg-dark: #1a1d24;
            --bg-card: #252a34;
            --accent-gold: #FFD700;
            --cta-gradient: linear-gradient(135deg, #FF6B35 0%, #FF2E63 100%);
            --text-white: #ffffff;
            --text-gray: #b0b0b0;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: var(--bg-dark); color: var(--text-white); line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background-color: #12141a; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; border-radius: 5px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: var(--accent-gold); }
        .header-right { display: flex; gap: 10px; }
        .btn-login { padding: 8px 15px; border-radius: 20px; border: 1px solid var(--accent-gold); color: var(--accent-gold); font-size: 14px; background: transparent; }
        .btn-register { padding: 8px 15px; border-radius: 20px; background: var(--cta-gradient); color: #fff; font-size: 14px; border: none; font-weight: bold; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: #000; margin: 15px; padding: 20px; border-radius: 15px; text-align: center; border: 2px solid var(--accent-gold); }
        .jackpot-title { font-size: 14px; color: var(--accent-gold); text-transform: uppercase; margin-bottom: 5px; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: bold; color: #fff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.7); font-family: 'Courier New', monospace; }
        .platform-intro { padding: 20px; text-align: center; }
        .platform-intro h1 { font-size: 22px; color: var(--accent-gold); margin-bottom: 10px; }
        .platform-intro p { font-size: 14px; color: var(--text-gray); }
        .section-title { padding: 15px 15px 5px; font-size: 18px; color: var(--accent-gold); display: flex; align-items: center; gap: 8px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: var(--bg-card); border-radius: 12px; overflow: hidden; position: relative; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; font-weight: bold; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #fff; }
        .game-info span { font-size: 11px; color: var(--text-gray); }
        .payment-licences { background: #12141a; padding: 20px 15px; margin: 15px 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .payment-licences i { font-size: 24px; color: var(--text-gray); }
        .guidelines-section { padding: 15px; display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guide-card { background: var(--bg-card); padding: 15px; border-radius: 12px; border-left: 4px solid var(--accent-gold); }
        .guide-card h2 { font-size: 16px; margin-bottom: 8px; color: var(--accent-gold); }
        .guide-card p { font-size: 13px; color: var(--text-gray); }
        .marquee-container { background: #12141a; padding: 10px 0; overflow: hidden; margin: 15px 0; }
        .marquee-content { display: flex; animation: scroll 40s linear infinite; gap: 30px; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
        .win-record { white-space: nowrap; font-size: 12px; color: var(--text-gray); }
        .win-record span { color: var(--accent-gold); font-weight: bold; }
        .providers-wall { padding: 15px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; background: #12141a; }
        .provider-badge { padding: 5px 12px; background: var(--bg-card); border-radius: 5px; font-size: 12px; color: var(--text-white); border: 1px solid #333; }
        .reviews-section { padding: 15px; display: grid; grid-template-columns: 1fr; gap: 15px; }
        .review-card { background: var(--bg-card); padding: 15px; border-radius: 12px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--accent-gold); }
        .review-user { font-size: 14px; font-weight: bold; }
        .review-stars { color: #ffc107; font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-gray); position: absolute; top: 15px; right: 15px; }
        .review-content { font-size: 13px; color: var(--text-gray); font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-card); border-radius: 10px; margin-bottom: 10px; padding: 15px; }
        .faq-item h2 { font-size: 15px; color: var(--accent-gold); margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: var(--text-gray); }
        .security-section { padding: 20px 15px; background: #000; text-align: center; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--accent-gold); }
        .security-text { font-size: 12px; color: var(--text-gray); }
        .security-links { margin-top: 10px; display: flex; justify-content: center; gap: 15px; font-size: 11px; color: var(--accent-gold); }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: #12141a; display: flex; justify-content: space-around; align-items: center; z-index: 2000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: var(--text-gray); font-size: 11px; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item:nth-child(3) { color: var(--accent-gold); position: relative; top: -10px; background: var(--bg-dark); width: 60px; height: 60px; border-radius: 50%; justify-content: center; border-top: 2px solid var(--accent-gold); }
        footer { background: #0d0f13; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #333; }
        .footer-contact { margin-bottom: 25px; }
        .footer-contact h2 { font-size: 16px; margin-bottom: 15px; color: var(--text-white); }
        .contact-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
        .contact-links a { color: var(--accent-gold); font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { font-size: 13px; color: var(--text-gray); }
        .copyright { font-size: 12px; color: #555; border-top: 1px solid #222; pt: 15px; }