:root {
            --primary: #D4AF37;
            --primary-variant: #F1C40F;
            --secondary: #10B981;
            --accent: #8B5CF6;
            --bg-main: #0F172A;
            --bg-sec: #1E293B;
            --bg-elev: #334155;
            --text-main: #F8FAFC;
            --text-sec: #94A3B8;
            --text-disabled: #64748B;
            --text-inv: #020617;
            --success: #22C55E;
            --error: #EF4444;
            --warning: #F59E0B;
            --info: #3B82F6;
            --border-sutil: #1E293B;
            --border-fuerte: #475569;
            --focus: #D4AF37;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-main);
            font-family: 'Roboto', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--primary); }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }

        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: var(--bg-sec);
            padding: 0.75rem 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-sutil);
        }
        .header-left { display: flex; align-items: center; gap: 0.5rem; }
        .header-left img { width: 25px; height: 25px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--text-main); }
        .header-right { display: flex; gap: 0.5rem; }
        .btn {
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: transform 0.2s;
        }
        .btn-login { background-color: transparent; color: var(--text-main); border: 1px solid var(--border-fuerte); }
        .btn-register { background-color: var(--primary); color: var(--text-inv); }
        .btn:active { transform: scale(0.95); }

        main { padding-bottom: 80px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: linear-gradient(135deg, var(--bg-sec) 0%, #1e1b4b 100%);
            margin: 1rem;
            padding: 1.5rem;
            border-radius: 16px;
            text-align: center;
            border: 2px solid var(--primary);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
        }
        .jackpot-title { color: var(--text-sec); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.5rem; }
        .jackpot-amount { font-family: 'Inter', monospace; font-size: 2.25rem; font-weight: 800; color: var(--primary-variant); }

        .platform-card { padding: 1.5rem; background-color: var(--bg-sec); margin: 1rem; border-radius: 16px; border-left: 4px solid var(--primary); }
        .platform-card h1 { font-size: 1.5rem; margin-bottom: 1rem; line-height: 1.25; }
        .platform-card p { color: var(--text-sec); font-size: 0.875rem; text-align: justify; }

        .section-title { padding: 0 1rem; margin: 1.5rem 0 1rem; font-size: 1.25rem; border-left: 4px solid var(--secondary); margin-left: 1rem; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 1rem; }
        .game-card {
            background-color: var(--bg-sec);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.2s;
            border: 1px solid var(--border-sutil);
        }
        .game-card img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
        .game-info { padding: 0.75rem; }
        .game-info h3 { font-size: 0.875rem; color: var(--text-main); margin-bottom: 0.25rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 0.75rem; color: var(--secondary); font-weight: 500; }

        .payment-licence { background-color: var(--bg-sec); margin: 1.5rem 1rem; padding: 1.5rem; border-radius: 16px; text-align: center; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 1rem; opacity: 0.8; }
        .payment-icons i { font-size: 2rem; color: var(--text-sec); }

        .guidelines-grid { padding: 0 1rem; display: flex; flex-direction: column; gap: 1rem; }
        .guide-item { background: var(--bg-elev); padding: 1.25rem; border-radius: 12px; }
        .guide-item h2 { font-size: 1.125rem; margin-bottom: 0.5rem; color: var(--primary); }
        .guide-item p { font-size: 0.875rem; color: var(--text-sec); text-align: justify; }

        .marquee-container { background-color: var(--bg-sec); margin: 1.5rem 0; padding: 1rem 0; overflow: hidden; white-space: nowrap; }
        .marquee-content { display: inline-block; animation: marquee 30s linear infinite; }
        .winner-tag { display: inline-flex; align-items: center; background: var(--bg-elev); margin: 0 10px; padding: 0.5rem 1rem; border-radius: 20px; border: 1px solid var(--primary); }
        .winner-tag span { font-size: 0.875rem; color: var(--text-main); margin: 0 5px; }
        .winner-val { color: var(--success); font-weight: bold; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { padding: 1.5rem; background: var(--bg-sec); margin: 1rem; border-radius: 16px; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
        .provider-badge { padding: 0.4rem 0.8rem; background: var(--bg-elev); border-radius: 4px; font-size: 0.75rem; color: var(--text-sec); font-weight: 600; border: 1px solid var(--border-sutil); }

        .reviews-container { padding: 0 1rem; display: flex; flex-direction: column; gap: 1rem; }
        .review-card { background: var(--bg-sec); padding: 1.25rem; border-radius: 16px; border: 1px solid var(--border-sutil); }
        .review-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
        .review-header i { font-size: 2rem; color: var(--primary); }
        .review-user { font-weight: 600; font-size: 1rem; }
        .stars { color: var(--warning); font-size: 0.75rem; }
        .review-date { font-size: 0.75rem; color: var(--text-disabled); margin-left: auto; }
        .review-content { font-size: 0.875rem; color: var(--text-sec); font-style: italic; }

        .faq-section { padding: 1rem; }
        .faq-item { background: var(--bg-sec); margin-bottom: 0.75rem; border-radius: 12px; padding: 1.25rem; }
        .faq-item h2 { font-size: 1rem; color: var(--text-main); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
        .faq-item h2::before { content: "\f059"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--primary); }
        .faq-item p { font-size: 0.875rem; color: var(--text-sec); }

        .safety-section { margin: 1.5rem 1rem; padding: 1.5rem; background: linear-gradient(to bottom, #1e293b, #0f172a); border-radius: 16px; text-align: center; border: 1px solid var(--border-fuerte); }
        .safety-icons { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1rem; font-size: 1.5rem; color: var(--secondary); }
        .age-limit { 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: 0.875rem; margin-bottom: 1rem; }

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

        footer { background-color: #020617; padding: 2rem 1rem 100px; text-align: center; }
        .footer-contact { margin-bottom: 2rem; }
        .footer-contact h2 { font-size: 1.25rem; margin-bottom: 1rem; }
        .contact-links { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
        .contact-links a { color: var(--text-sec); font-size: 0.875rem; padding: 0.5rem; border: 1px solid var(--border-sutil); border-radius: 8px; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; margin-bottom: 2rem; text-align: left; }
        .footer-links a { color: var(--text-disabled); font-size: 0.75rem; }
        .copyright { color: var(--text-disabled); font-size: 0.75rem; padding-top: 1rem; border-top: 1px solid var(--border-sutil); }

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