* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0B0E11; color: #EAECEF; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.5; overflow-x: hidden; }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; color: #FFFFFF; font-weight: 700; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        header { background-color: #1E2329; 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 #374151; }
        header .logo-box { display: flex; align-items: center; gap: 8px; }
        header .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        header .logo-box strong { font-size: 16px; font-weight: 400; color: #FFD700; }
        header .auth-btns { display: flex; gap: 10px; }
        header .btn { padding: 6px 14px; border-radius: 4px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; }
        header .btn-login { background: transparent; color: #FFD700; border: 1px solid #FFD700; }
        header .btn-register { background: linear-gradient(180deg, #FFD700 0%, #B8860B 100%); color: #000000; }
        main { padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; cursor: pointer; }
        .jackpot-container { background: #2B2F36; margin: 15px; padding: 15px; border-radius: 12px; border: 1px solid #D4AF37; text-align: center; }
        .jackpot-title { font-size: 14px; color: #FF4D4D; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; font-weight: 800; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #FFD700; font-family: 'Montserrat', sans-serif; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-card { padding: 20px 15px; text-align: center; }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; color: #FFD700; }
        .intro-card p { font-size: 14px; color: #94A3B8; }
        .section-title { padding: 0 15px; margin: 20px 0 15px; font-size: 18px; border-left: 4px solid #FFD700; margin-left: 15px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #2B2F36; border-radius: 10px; overflow: hidden; border: 1px solid #374151; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
        .game-card h3 { font-size: 13px; padding: 8px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-license { background: #1E2329; margin: 25px 0; padding: 20px 15px; }
        .pl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .pl-item i { font-size: 24px; color: #D4AF37; margin-bottom: 5px; display: block; }
        .pl-item span { font-size: 11px; color: #94A3B8; display: block; }
        .instructions { padding: 0 15px; }
        .inst-item { background: #2B2F36; padding: 15px; border-radius: 8px; margin-bottom: 12px; border-left: 3px solid #D4AF37; }
        .inst-item h2 { font-size: 16px; margin-bottom: 8px; color: #FFD700; }
        .inst-item p { font-size: 13px; color: #EAECEF; }
        .lottery-box { background: #1E2329; margin: 20px 0; padding: 10px 0; overflow: hidden; position: relative; }
        .lottery-track { display: flex; flex-direction: column; animation: marquee 30s linear infinite; }
        @keyframes marquee { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .lottery-item { padding: 8px 15px; border-bottom: 1px solid #374151; display: flex; justify-content: space-between; font-size: 12px; }
        .lottery-user { color: #FFD700; }
        .lottery-win { color: #28A745; font-weight: 700; }
        .providers-wall { padding: 15px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-btn { background: #2B2F36; padding: 12px; border-radius: 6px; text-align: center; font-weight: 600; color: #FFD700; border: 1px solid #374151; font-size: 14px; }
        .reviews { padding: 0 15px; }
        .review-card { background: #2B2F36; border-radius: 12px; padding: 15px; margin-bottom: 15px; border: 1px solid #374151; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: #94A3B8; }
        .review-info h3 { font-size: 14px; }
        .stars { color: #FFC107; font-size: 12px; }
        .review-content { font-size: 13px; color: #EAECEF; font-style: italic; }
        .review-date { font-size: 11px; color: #94A3B8; margin-top: 8px; display: block; }
        .faq-section { padding: 0 15px; }
        .faq-item { background: #1E2329; border-radius: 8px; margin-bottom: 10px; padding: 15px; border: 1px solid #374151; }
        .faq-item h2 { font-size: 15px; color: #FFD700; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #94A3B8; }
        .security-section { padding: 20px 15px; text-align: center; background: #0B0E11; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
        .security-badges i { font-size: 30px; color: #28A745; }
        .security-text { font-size: 12px; color: #94A3B8; max-width: 300px; margin: 0 auto; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1E2329; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #374151; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #94A3B8; font-size: 10px; gap: 4px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active, .nav-item:active { color: #FFD700; }
        footer { background: #0B0E11; padding: 30px 15px 100px; border-top: 1px solid #374151; }
        footer .contact-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        footer .contact-row a { font-size: 13px; color: #FFD700; background: #1E2329; padding: 8px 15px; border-radius: 20px; border: 1px solid #374151; }
        footer .links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; text-align: center; }
        footer .links-grid a { font-size: 13px; color: #94A3B8; }
        footer .copyright { text-align: center; font-size: 11px; color: #374151; border-top: 1px solid #1E2329; padding-top: 20px; }