:root {
            --primary: #FFD700;
            --primary-variant: #C5A022;
            --secondary: #1E2329;
            --accent: #FFFFFF;
            --bg-main: #0B0E11;
            --bg-sec: #1E2329;
            --bg-surface: #2B3139;
            --overlay: rgba(0, 0, 0, 0.85);
            --text-main: #FFFFFF;
            --text-sec: #929AA5;
            --text-highlight: #FFD700;
            --success: #0ECB81;
            --error: #F6465D;
            --border-sutil: #2B3139;
            --border-fuerte: #474D57;
            --border-active: #FFD700;
        }

        body {
            background-color: var(--bg-main);
            color: var(--text-main);
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.5;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin: 0;
        }

        h1 { font-size: 32px; line-height: 1.2; color: var(--text-highlight); }
        h2 { font-size: 24px; color: var(--text-main); margin-bottom: 20px; text-align: center; }
        h3 { font-size: 16px; margin-top: 10px; }

        a { text-decoration: none; color: inherit; }

        .container { padding: 20px; max-width: 1200px; margin: 0 auto; }

        header {
            background-color: var(--bg-sec);
            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 var(--border-sutil);
        }

        .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-main); }

        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: opacity 0.2s;
        }
        .btn-login { background-color: transparent; color: var(--text-main); border: 1px solid var(--border-fuerte); }
        .btn-register { background-color: var(--primary); color: #000; }

        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-main) 100%);
            margin: 20px 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary-variant);
        }
        .jackpot-label { color: var(--primary); font-weight: 800; font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 36px; font-weight: 800; color: var(--text-main); font-family: 'Montserrat', sans-serif; text-shadow: 0 0 10px rgba(255,215,0,0.5); }

        .intro-card { background: var(--bg-sec); margin: 20px 15px; padding: 25px; border-radius: 16px; border-left: 4px solid var(--primary); }
        .intro-card p { color: var(--text-sec); font-size: 16px; margin-top: 15px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; padding: 15px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; transition: transform 0.2s; border: 1px solid var(--border-sutil); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .game-info span { font-size: 12px; color: var(--text-sec); }

        .trust-section { background: var(--bg-sec); padding: 30px 15px; text-align: center; }
        .icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; justify-items: center; opacity: 0.7; }
        .icon-grid i { font-size: 24px; color: var(--text-sec); }

        .guidelines { display: grid; grid-template-columns: 1fr; gap: 20px; padding: 20px 15px; }
        .guide-item { background: var(--bg-surface); padding: 20px; border-radius: 12px; border-bottom: 2px solid var(--primary-variant); }
        .guide-item h3 { color: var(--primary); margin-bottom: 10px; }
        .guide-item p { font-size: 14px; color: var(--text-sec); }

        .ticker-wrapper { background: #000; padding: 10px 0; overflow: hidden; white-space: nowrap; margin: 20px 0; border-top: 1px solid var(--border-sutil); border-bottom: 1px solid var(--border-sutil); }
        .ticker-scroll { display: inline-block; animation: scroll 40s linear infinite; }
        .ticker-item { display: inline-block; margin-right: 30px; font-size: 13px; color: var(--text-main); }
        .ticker-item span { color: var(--success); font-weight: bold; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { text-align: center; padding: 20px 15px; color: var(--text-sec); font-weight: 600; font-size: 14px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .provider-tag { background: var(--bg-surface); padding: 5px 12px; border-radius: 20px; }

        .comments-section { padding: 20px 15px; }
        .comment-card { background: var(--bg-sec); padding: 20px; border-radius: 12px; margin-bottom: 15px; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: var(--primary); }
        .stars { color: var(--primary); font-size: 12px; }
        .comment-date { font-size: 12px; color: var(--text-sec); float: right; }

        .faq-section { padding: 20px 15px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; border-bottom: 1px solid var(--border-sutil); color: var(--text-highlight); }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-sec); }

        .security-section { text-align: center; padding: 40px 15px; background: #000; }
        .age-badge { display: inline-block; width: 40px; height: 40px; border: 2px solid var(--error); border-radius: 50%; line-height: 36px; font-weight: 800; color: var(--error); margin-bottom: 15px; }

        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: var(--bg-sec);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-sutil);
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 10px; color: var(--text-sec); gap: 4px; }
        .nav-item i { font-size: 18px; }

        footer { background: var(--bg-main); padding: 40px 15px 100px; border-top: 1px solid var(--border-sutil); }
        .footer-contacts { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-grid a { color: var(--text-sec); font-size: 13px; text-align: center; }
        .copyright { text-align: center; font-size: 12px; color: var(--text-desactivado); }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines { grid-template-columns: 1fr 1fr 1fr; }
        }