:root {
            --bg-primary: #0B0E11;
            --bg-secondary: #151921;
            --bg-surface: #1F2630;
            --bg-elevation: #2A323D;
            --brand-primary: #D4AF37;
            --brand-primary-variant: #F1C40F;
            --brand-secondary: #00A86B;
            --brand-accent: #FF4500;
            --success: #2ECC71;
            --error: #E74C3C;
            --warning: #F39C12;
            --info: #3498DB;
            --text-high: #FFFFFF;
            --text-medium: #B0B3B8;
            --text-disabled: #65676B;
            --on-brand: #000000;
            --border-sutil: #2D3436;
            --border-fuerte: #4A4A4A;
            --border-active: #D4AF37;
            --font-titles: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-mono: 'Roboto Mono', monospace;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: var(--bg-primary); color: var(--text-medium); font-family: var(--font-body); line-height: 1.5; -webkit-font-smoothing: antialiased; padding-bottom: 70px; }
        h1, h2, h3 { font-family: var(--font-titles); color: var(--text-high); font-weight: 700; line-height: 1.2; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
        header { background-color: var(--bg-secondary); border-bottom: 1px solid var(--border-sutil); height: 60px; position: sticky; top: 0; z-index: 1000; }
        .header-content { display: flex; justify-content: space-between; align-items: center; height: 100%; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: 400; color: var(--text-high); }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 6px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; transition: all 0.3s ease; font-family: var(--font-body); }
        .btn-login { background-color: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background-color: var(--brand-primary); color: var(--on-brand); }
        .banner-section { margin-top: 10px; cursor: pointer; overflow: hidden; border-radius: 12px; aspect-ratio: 2/1; }
        .jackpot-container { background: linear-gradient(135deg, var(--bg-elevation), var(--bg-surface)); border: 2px solid var(--brand-primary); border-radius: 15px; padding: 20px; text-align: center; margin: 20px 0; box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); }
        .jackpot-title { color: var(--brand-primary); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-family: var(--font-mono); font-size: 36px; color: var(--brand-primary-variant); font-weight: 800; text-shadow: 0 0 10px rgba(241, 196, 15, 0.5); }
        .platform-intro { padding: 20px; background-color: var(--bg-secondary); border-radius: 12px; margin-bottom: 20px; border-left: 4px solid var(--brand-primary); }
        .platform-intro h1 { font-size: 24px; margin-bottom: 12px; }
        .section-title { font-size: 20px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; border-left: 4px solid var(--brand-secondary); padding-left: 12px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background-color: var(--bg-surface); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-sutil); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.97); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info p { font-size: 12px; color: var(--text-disabled); }
        .trust-section { background-color: var(--bg-secondary); padding: 20px; border-radius: 12px; text-align: center; margin-bottom: 25px; }
        .payment-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 15px; opacity: 0.8; }
        .payment-icons i { font-size: 24px; color: var(--text-medium); }
        .content-block { background-color: var(--bg-surface); padding: 20px; border-radius: 12px; margin-bottom: 20px; border: 1px solid var(--border-sutil); }
        .content-block h2 { font-size: 18px; margin-bottom: 10px; color: var(--brand-primary); }
        .content-block p { font-size: 14px; text-align: justify; }
        .marquee-container { background-color: var(--bg-secondary); padding: 10px 0; overflow: hidden; margin: 20px 0; border-y: 1px solid var(--border-sutil); }
        .marquee-track { display: flex; animation: scroll 40s linear infinite; width: max-content; }
        .winner-item { padding: 0 20px; display: flex; align-items: center; gap: 8px; border-right: 1px solid var(--border-sutil); white-space: nowrap; font-size: 13px; }
        .winner-amount { color: var(--success); font-weight: 700; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; padding: 15px; background-color: var(--bg-elevation); border-radius: 10px; }
        .provider-tag { background: var(--bg-surface); padding: 6px 12px; border-radius: 4px; font-size: 12px; font-weight: 600; border: 1px solid var(--border-fuerte); }
        .review-card { background: var(--bg-secondary); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-sutil); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; background: var(--bg-elevation); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--brand-primary); }
        .review-user { font-weight: 600; font-size: 14px; }
        .review-stars { color: var(--brand-primary-variant); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-disabled); margin-left: auto; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 15px; cursor: pointer; border-bottom: 1px solid var(--border-sutil); color: var(--text-high); }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-medium); }
        .security-footer { text-align: center; padding: 25px; background-color: var(--bg-secondary); border-radius: 12px; margin-bottom: 30px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--brand-secondary); }
        .age-badge { display: inline-block; border: 2px solid var(--error); color: var(--error); border-radius: 50%; width: 40px; height: 40px; line-height: 36px; font-weight: 800; font-size: 18px; margin-bottom: 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--bg-secondary); border-top: 1px solid var(--border-sutil); display: flex; justify-content: space-around; padding: 10px 0; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-medium); font-size: 12px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: var(--brand-primary); }
        footer { background-color: var(--bg-secondary); padding: 40px 16px 100px; border-top: 1px solid var(--border-sutil); }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-social a { font-size: 20px; color: var(--text-medium); transition: color 0.3s; }
        .footer-social a:hover { color: var(--brand-primary); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: var(--text-medium); display: block; margin-bottom: 8px; }
        .footer-copy { text-align: center; font-size: 12px; color: var(--text-disabled); padding-top: 20px; border-top: 1px solid var(--border-sutil); }