* { margin: 0; padding: 0; box-sizing: border-box; }
        body { background-color: #0A0A0A; color: #FFFFFF; font-family: 'Inter', sans-serif; line-height: 1.5; overflow-x: hidden; }
        header { background: rgba(22, 22, 22, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2D2D2D; padding: 10px 15px; display: flex; align-items: center; justify-content: space-between; height: 60px; }
        header .brand { display: flex; align-items: center; gap: 8px; text-decoration: none; color: #FFFFFF; }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        header .brand strong { font-size: 16px; font-weight: 400; color: #D4AF37; }
        header .actions { display: flex; gap: 10px; }
        header button { padding: 8px 16px; border-radius: 20px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; transition: transform 0.2s; }
        header .btn-login { background: transparent; color: #FFFFFF; border: 1px solid #D4AF37; }
        header .btn-register { background: linear-gradient(135deg, #D4AF37, #F9E076); color: #000000; }
        main { max-width: 800px; margin: 0 auto; padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: #161616; margin: 15px; padding: 20px; border-radius: 15px; border: 1px solid #D4AF37; text-align: center; position: relative; overflow: hidden; }
        .jackpot-label { color: #D4AF37; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: #FFD700; text-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }
        .intro-card { background: #161616; margin: 15px; padding: 25px; border-radius: 20px; border-left: 4px solid #D4AF37; }
        .intro-card h1 { font-family: 'Montserrat', sans-serif; font-size: 24px; color: #D4AF37; margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { color: #B0B0B0; font-size: 14px; }
        .section-title { padding: 20px 15px 10px; font-family: 'Montserrat', sans-serif; font-size: 20px; color: #FFFFFF; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 20px; background: #E63946; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #1F1F1F; border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid #2D2D2D; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; color: #FFFFFF; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
        .payments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; }
        .payment-item { background: #161616; border-radius: 10px; padding: 15px 5px; text-align: center; border: 1px solid #2D2D2D; }
        .payment-item i { font-size: 24px; color: #D4AF37; margin-bottom: 8px; display: block; }
        .payment-item span { font-size: 11px; color: #808080; }
        .guide-section { padding: 15px; }
        .guide-card { background: #161616; padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid #2D2D2D; }
        .guide-card h2 { font-size: 18px; color: #D4AF37; margin-bottom: 10px; font-family: 'Montserrat', sans-serif; }
        .guide-card p { font-size: 14px; color: #B0B0B0; text-align: justify; }
        .winners-list { background: #161616; margin: 15px; border-radius: 15px; overflow: hidden; }
        .winner-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 15px; border-bottom: 1px solid #2D2D2D; }
        .winner-info { display: flex; flex-direction: column; }
        .winner-name { font-weight: 600; color: #FFFFFF; font-size: 14px; }
        .winner-game { font-size: 12px; color: #808080; }
        .winner-prize { color: #00C851; font-weight: 700; font-family: 'Inter', sans-serif; }
        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; padding: 15px; }
        .provider-tag { flex: 1 1 calc(50% - 10px); background: linear-gradient(90deg, #1F1F1F, #161616); padding: 12px; border-radius: 8px; text-align: center; font-weight: 600; color: #D4AF37; border: 1px solid #404040; font-size: 14px; }
        .reviews-container { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: #1F1F1F; padding: 20px; border-radius: 15px; border: 1px solid #2D2D2D; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
        .review-user { display: flex; align-items: center; gap: 8px; color: #F9E076; font-weight: 600; }
        .review-stars { color: #FFD700; font-size: 12px; }
        .review-content { font-size: 14px; color: #B0B0B0; font-style: italic; }
        .review-date { font-size: 11px; color: #808080; margin-top: 8px; display: block; }
        .faq-section { padding: 15px; }
        .faq-item { background: #161616; border-radius: 10px; margin-bottom: 10px; border: 1px solid #2D2D2D; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: #FFFFFF; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
        .faq-answer { padding: 0 15px 15px; color: #B0B0B0; font-size: 14px; display: block; border-top: 1px solid #2D2D2D; padding-top: 15px; }
        .security-section { background: #161616; margin: 15px; padding: 20px; border-radius: 15px; text-align: center; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
        .security-badges i { font-size: 30px; color: #D4AF37; }
        .security-text { font-size: 13px; color: #808080; line-height: 1.6; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #161616; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2D2D2D; z-index: 1000; box-shadow: 0 -5px 15px rgba(0,0,0,0.5); }
        .nav-item { text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 4px; color: #808080; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 12px; font-weight: 500; }
        .nav-item.active { color: #D4AF37; }
        footer { background: #0A0A0A; padding: 40px 20px 100px; border-top: 1px solid #2D2D2D; }
        footer .contact-row { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 30px; }
        footer .contact-link { color: #B0B0B0; text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 8px; padding: 8px 15px; background: #161616; border-radius: 20px; }
        footer .links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        footer .footer-link { color: #808080; text-decoration: none; font-size: 13px; text-align: center; }
        footer .copyright { text-align: center; color: #666666; font-size: 12px; border-top: 1px solid #1F1F1F; padding-top: 20px; }