* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #1a1d24; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background: #11141a; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323d; display: flex; justify-content: space-between; align-items: center; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .header-right { display: flex; gap: 10px; }
        .btn { border: none; padding: 8px 15px; border-radius: 20px; font-weight: bold; cursor: pointer; font-size: 14px; color: #fff; transition: opacity 0.3s; }
        .btn-login { background: #323844; }
        .btn-register { background: linear-gradient(90deg, #FF6B35, #FF2E63); }
        main { max-width: 1000px; margin: 0 auto; padding: 10px; }
        .banner-container { margin-bottom: 20px; cursor: pointer; border-radius: 12px; overflow: hidden; aspect-ratio: 2/1; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: #242933; padding: 20px; border-radius: 15px; text-align: center; border: 2px solid #FFD700; margin-bottom: 20px; box-shadow: 0 0 15px rgba(255, 215, 0, 0.2); }
        .jackpot-label { color: #FFD700; font-size: 14px; text-transform: uppercase; font-weight: bold; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); font-family: monospace; }
        .platform-intro { background: #242933; padding: 20px; border-radius: 15px; margin-bottom: 20px; border-left: 4px solid #FFD700; }
        .platform-intro h1 { font-size: 20px; margin-bottom: 10px; color: #FFD700; }
        .platform-intro p { font-size: 14px; color: #cccccc; }
        .section-title { font-size: 18px; margin: 25px 0 15px; padding-left: 10px; border-left: 3px solid #FF2E63; display: flex; justify-content: space-between; align-items: center; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #242933; border-radius: 12px; overflow: hidden; display: block; border: 1px solid #2d323d; 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; color: #ffffff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 2px; }
        .game-provider { font-size: 11px; color: #888; }
        .payment-licensing { background: #242933; padding: 20px; border-radius: 15px; margin-bottom: 20px; text-align: center; }
        .icon-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; opacity: 0.7; }
        .icon-grid i { font-size: 30px; color: #FFD700; }
        .pautas-section { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .pauta-card { background: #242933; padding: 15px; border-radius: 12px; border: 1px solid #2d323d; }
        .pauta-card h2 { font-size: 16px; color: #FFD700; margin-bottom: 8px; }
        .pauta-card p { font-size: 13px; color: #bbb; }
        .marquee-container { background: #11141a; padding: 10px 0; overflow: hidden; position: relative; margin-bottom: 25px; border-radius: 8px; }
        .marquee-content { display: flex; white-space: nowrap; animation: marquee 40s linear infinite; gap: 30px; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .win-record { display: flex; align-items: center; gap: 10px; font-size: 12px; background: #242933; padding: 5px 15px; border-radius: 20px; border: 1px solid #323844; }
        .win-user { color: #FFD700; font-weight: bold; }
        .win-amount { color: #4CAF50; font-weight: bold; }
        .providers-wall { background: #242933; padding: 20px; border-radius: 12px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 25px; }
        .provider-tag { background: #323844; padding: 5px 12px; border-radius: 4px; font-size: 12px; color: #FFD700; font-weight: bold; border: 1px solid #444; }
        .reviews-section { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .review-card { background: #242933; padding: 15px; border-radius: 12px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: #888; }
        .review-name { font-weight: bold; font-size: 14px; }
        .review-stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #666; margin-left: auto; }
        .review-content { font-size: 13px; color: #bbb; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: #242933; border-radius: 8px; margin-bottom: 8px; overflow: hidden; }
        .faq-question { padding: 15px; cursor: pointer; font-weight: bold; color: #FFD700; display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
        .faq-answer { padding: 0 15px 15px; color: #bbb; font-size: 13px; }
        .security-section { background: #11141a; padding: 20px; border-radius: 12px; text-align: center; border: 1px solid #2d323d; margin-bottom: 25px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #4CAF50; }
        .security-text { font-size: 12px; color: #888; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #11141a; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323d; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: #888; width: 20%; }
        .nav-item i { font-size: 18px; }
        .nav-item:nth-child(3) { color: #FFD700; }
        footer { background: #11141a; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323d; }
        .footer-contact { margin-bottom: 25px; display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .footer-contact a { color: #FFD700; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; margin-bottom: 30px; text-align: left; }
        .footer-links a { color: #888; font-size: 13px; display: block; margin-bottom: 5px; }
        .footer-copy { font-size: 12px; color: #666; border-top: 1px solid #2d323d; padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .pautas-section, .reviews-section { grid-template-columns: 1fr 1fr; }
        }