* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0A0A0A; color: #FFFFFF; font-family: 'Roboto', sans-serif; line-height: 1.5; overflow-x: hidden; }
        header { background-color: #1A1A1B; border-bottom: 2px solid #996515; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; }
        header .brand { display: flex; align-items: center; gap: 10px; }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        header .brand strong { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 400; color: #D4AF37; }
        header .auth-buttons { display: flex; gap: 10px; }
        header button { border: none; border-radius: 4px; padding: 8px 12px; font-weight: 600; cursor: pointer; font-size: 14px; transition: 0.3s; }
        .btn-login { background-color: transparent; color: #FFFFFF; border: 1px solid #D4AF37; }
        .btn-register { background-color: #D4AF37; color: #0A0A0A; }
        main { max-width: 800px; margin: 0 auto; padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; cursor: pointer; border-radius: 0 0 12px 12px; }
        .jackpot-container { background: radial-gradient(circle, #1E1E1E 0%, #0A0A0A 100%); border: 1px solid #996515; margin: 20px 15px; padding: 20px; border-radius: 15px; text-align: center; box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); }
        .jackpot-label { color: #FFD700; font-family: 'Montserrat', sans-serif; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { font-family: 'Oswald', sans-serif; font-size: 36px; color: #FFFFFF; text-shadow: 0 0 10px #FFD700; }
        .intro-card { background-color: #141414; margin: 20px 15px; padding: 25px; border-radius: 15px; border-left: 5px solid #006847; border-right: 5px solid #CE1126; }
        .intro-card h1 { font-family: 'Montserrat', sans-serif; font-size: 24px; color: #D4AF37; margin-bottom: 15px; line-height: 1.2; }
        .intro-card p { color: #B0B0B0; font-size: 16px; }
        h2 { font-family: 'Montserrat', sans-serif; font-size: 20px; color: #FFFFFF; margin: 25px 15px 15px; display: flex; align-items: center; gap: 10px; }
        h2::before { content: ""; width: 4px; height: 20px; background-color: #D4AF37; display: inline-block; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background-color: #1E1E1E; border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid #2C2C2C; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; color: #FFFFFF; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-align: center; font-family: 'Roboto', sans-serif; font-weight: 500; }
        .payment-methods { background-color: #141414; margin: 20px 15px; padding: 20px; border-radius: 15px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 8px; color: #B0B0B0; font-size: 10px; text-align: center; }
        .payment-item i { font-size: 24px; color: #D4AF37; }
        .guides-container { padding: 0 15px; }
        .guide-item { background-color: #1E1E1E; padding: 20px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #2C2C2C; }
        .guide-item h3 { color: #FFD700; font-size: 18px; margin-bottom: 10px; font-family: 'Montserrat', sans-serif; }
        .guide-item p { color: #B0B0B0; font-size: 14px; }
        .lottery-box { background-color: #141414; margin: 20px 0; overflow: hidden; border-top: 1px solid #996515; border-bottom: 1px solid #996515; }
        .lottery-track { display: flex; flex-direction: column; animation: marquee 30s linear infinite; }
        .lottery-item { display: flex; justify-content: space-between; padding: 10px 20px; border-bottom: 1px solid #2C2C2C; font-size: 13px; }
        .lottery-user { color: #D4AF37; font-weight: 600; }
        .lottery-amount { color: #2ECC71; font-family: 'Oswald', sans-serif; }
        @keyframes marquee { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; padding: 0 15px; }
        .provider-tag { flex: 1 1 calc(50% - 10px); background: linear-gradient(135deg, #006847 0%, #0A0A0A 100%); padding: 15px; border-radius: 8px; text-align: center; font-weight: 700; color: #FFFFFF; font-size: 14px; border: 1px solid #2C2C2C; }
        .provider-tag:nth-child(even) { background: linear-gradient(135deg, #CE1126 0%, #0A0A0A 100%); }
        .reviews-container { padding: 0 15px; }
        .review-card { background-color: #1E1E1E; padding: 20px; border-radius: 15px; margin-bottom: 15px; border: 1px solid #2C2C2C; }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: #D4AF37; }
        .review-info h3 { font-size: 16px; margin: 0; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-content { font-size: 14px; color: #B0B0B0; font-style: italic; }
        .review-date { font-size: 12px; color: #666666; margin-top: 10px; display: block; }
        .faq-container { padding: 0 15px; }
        .faq-item { background-color: #141414; margin-bottom: 10px; border-radius: 8px; overflow: hidden; border: 1px solid #2C2C2C; }
        .faq-item h3 { padding: 15px; font-size: 15px; background-color: #1E1E1E; cursor: pointer; color: #D4AF37; }
        .faq-item p { padding: 15px; color: #B0B0B0; font-size: 14px; border-top: 1px solid #2C2C2C; }
        .security-section { background: #0A0A0A; margin: 20px 15px; padding: 25px; border-radius: 15px; border: 1px dashed #D4AF37; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: #D4AF37; }
        .security-text { font-size: 14px; color: #B0B0B0; margin-bottom: 15px; }
        .age-badge { display: inline-block; padding: 5px 15px; border: 2px solid #CE1126; color: #CE1126; border-radius: 50%; font-weight: 800; font-size: 18px; margin-bottom: 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background-color: #1A1A1B; border-top: 2px solid #D4AF37; display: flex; justify-content: space-around; padding: 10px 0; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: #B0B0B0; font-size: 12px; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item:active { color: #D4AF37; }
        footer { background-color: #0A0A0A; padding: 40px 15px 100px; border-top: 1px solid #2C2C2C; }
        footer .contact-row { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
        footer .contact-row a { color: #D4AF37; text-decoration: none; font-weight: 600; font-size: 14px; }
        footer .links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 30px; }
        footer .links-grid a { color: #B0B0B0; text-decoration: none; font-size: 13px; transition: color 0.2s; }
        footer .links-grid a:hover { color: #FFFFFF; }
        footer .copyright { text-align: center; color: #666666; font-size: 12px; border-top: 1px solid #1E1E1E; padding-top: 20px; }