:root {
            --bg-primary: #0A0B0D;
            --bg-secondary: #16181D;
            --bg-tertiary: #1E2127;
            --bg-surface: #252830;
            --brand-primary: #FFD700;
            --brand-primary-light: #FFE44D;
            --brand-primary-dark: #B39700;
            --brand-secondary: #C8AA6E;
            --brand-accent: #E63946;
            --text-primary: #FFFFFF;
            --text-secondary: #A0A0A0;
            --text-tertiary: #6C757D;
            --border-default: #2C2F36;
            --border-active: #FFD700;
            --heading-font: 'Montserrat', sans-serif;
            --body-font: 'Inter', sans-serif;
            --mono-font: 'Roboto Mono', monospace;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { background-color: var(--bg-primary); color: var(--text-primary); font-family: var(--body-font); line-height: 1.5; -webkit-tap-highlight-color: transparent; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }

        header { height: 60px; background: var(--bg-secondary); 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-default); }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: 400; text-transform: uppercase; letter-spacing: 1px; }
        .header-btns { display: flex; gap: 10px; }
        .btn-login, .btn-reg { padding: 6px 16px; border-radius: 4px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; }
        .btn-login { background: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-reg { background: var(--brand-primary); color: #000; }

        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; background: var(--bg-tertiary); }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container { background: linear-gradient(135deg, #1e2127 0%, #0a0b0d 100%); padding: 20px 15px; text-align: center; border-bottom: 2px solid var(--brand-primary); }
        .jackpot-label { color: var(--brand-primary); font-weight: 700; font-size: 14px; letter-spacing: 2px; margin-bottom: 5px; }
        .jackpot-amount { font-family: var(--mono-font); font-size: 32px; font-weight: 900; color: #fff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }

        .intro-card { padding: 25px 15px; background: var(--bg-secondary); margin: 15px; border-radius: 12px; border: 1px solid var(--border-default); }
        .intro-card h1 { font-family: var(--heading-font); font-size: 24px; color: var(--brand-primary); margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }

        .section-title { font-family: var(--heading-font); font-size: 20px; padding: 0 15px; margin: 20px 0 15px; border-left: 4px solid var(--brand-primary); display: flex; justify-content: space-between; align-items: center; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-default); display: block; }
        .game-img-box { width: 100%; aspect-ratio: 1/1; background: var(--bg-tertiary); overflow: hidden; }
        .game-img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .game-card:hover .game-img-box img { transform: scale(1.05); }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 12px; color: var(--brand-secondary); }

        .payment-methods { background: var(--bg-tertiary); padding: 20px 15px; margin: 20px 0; }
        .icon-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-bottom: 15px; }
        .p-icon { background: white; border-radius: 4px; padding: 5px; height: 40px; display: flex; align-items: center; justify-content: center; }
        .p-icon img { height: 100%; object-fit: contain; filter: grayscale(1); transition: 0.3s; }
        .p-icon:hover img { filter: grayscale(0); }

        .guidelines { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .guide-item { background: var(--bg-secondary); padding: 20px; border-radius: 12px; border: 1px solid var(--border-default); }
        .guide-item h2 { font-size: 18px; color: var(--brand-primary); margin-bottom: 10px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); text-align: justify; }

        .winners-marquee { background: var(--bg-surface); padding: 10px 0; margin: 20px 0; border-top: 1px solid var(--brand-primary); border-bottom: 1px solid var(--brand-primary); overflow: hidden; }
        .marquee-track { display: flex; animation: scroll 30s linear infinite; white-space: nowrap; }
        .win-card { flex: 0 0 auto; padding: 0 20px; border-right: 1px solid var(--border-default); display: flex; flex-direction: column; }
        .win-user { font-weight: 700; color: var(--brand-primary); font-size: 14px; }
        .win-game { font-size: 12px; color: var(--text-secondary); }
        .win-amount { color: var(--brand-accent); font-family: var(--mono-font); font-weight: 700; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { padding: 20px 15px; background: var(--bg-secondary); text-align: center; }
        .providers-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
        .provider-tag { background: var(--bg-tertiary); padding: 6px 12px; border-radius: 20px; font-size: 12px; border: 1px solid var(--border-default); color: var(--text-secondary); }

        .review-grid { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; margin-top: 15px; }
        .review-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; border-bottom: 3px solid var(--brand-primary); }
        .rev-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
        .rev-avatar { width: 40px; height: 40px; background: var(--bg-tertiary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--brand-primary); }
        .rev-user { font-weight: 600; font-size: 14px; }
        .stars { color: var(--brand-primary); font-size: 12px; }
        .rev-date { font-size: 11px; color: var(--text-tertiary); margin-left: auto; }
        .rev-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }

        .faq-section { padding: 20px 15px; background: var(--bg-tertiary); margin-top: 25px; }
        .faq-item { margin-bottom: 20px; border-bottom: 1px solid var(--border-default); padding-bottom: 15px; }
        .faq-item h3 { font-size: 16px; color: var(--brand-primary); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }

        .security { padding: 25px 15px; text-align: center; background: #000; border-top: 1px solid var(--border-default); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--text-secondary); }
        .security h2 { font-size: 18px; margin-bottom: 10px; color: var(--text-primary); }
        .security p { font-size: 12px; color: var(--text-tertiary); max-width: 300px; margin: 0 auto; }

        footer { background: var(--bg-secondary); padding: 30px 15px 100px; border-top: 1px solid var(--border-default); }
        .contact-row { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 30px; }
        .contact-link { color: var(--brand-primary); font-size: 14px; display: flex; align-items: center; gap: 6px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .copyright { text-align: center; font-size: 12px; color: var(--text-tertiary); border-top: 1px solid var(--border-default); padding-top: 20px; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-surface); height: 65px; display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--border-default); z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; color: var(--text-secondary); }
        .nav-item i { font-size: 18px; }
        .nav-item span { font-size: 11px; }
        .nav-item:nth-child(3) { color: var(--brand-primary); }