:root {
            --oro-mex-p: #D4AF37;
            --oro-bri-a: #FFD700;
            --verde-cas-p: #004D40;
            --rojo-pas-m: #CE1126;
            --bg-p-osc: #0A0A0B;
            --bg-s-tar: #161618;
            --bg-e-sup: #212124;
            --txt-p-alt: #FFFFFF;
            --txt-s-sua: #B0B0B0;
            --txt-d-ten: #626262;
            --bor-sut: #2D2D30;
            --bor-fue: #404044;
            --success: #22C55E;
            --radius: 12px;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            background-color: var(--bg-p-osc); 
            color: var(--txt-p-alt); 
            font-family: 'Inter', sans-serif; 
            line-height: 1.5;
            -webkit-tap-highlight-color: transparent;
        }

        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; line-height: 1.1; color: var(--oro-mex-p); }
        a { text-decoration: none; color: inherit; }

        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-e-sup);
            border-bottom: 1px solid var(--bor-sut);
            padding: 10px 15px;
            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: 400; color: var(--txt-p-alt); }

        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.2s;
        }
        .btn-login { background: transparent; color: var(--oro-mex-p); border: 1px solid var(--oro-mex-p); }
        .btn-reg { background: linear-gradient(135deg, var(--oro-mex-p), var(--oro-bri-a)); color: #000; }

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

        .jackpot-container {
            margin: 20px 15px;
            background: linear-gradient(45deg, var(--verde-cas-p), #002D26);
            border: 2px solid var(--oro-mex-p);
            border-radius: var(--radius);
            padding: 20px;
            text-align: center;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title { color: var(--oro-bri-a); font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
        #jackpot-amount { font-family: 'Poppins', sans-serif; font-size: 2.2rem; color: #FFF; text-shadow: 0 0 10px rgba(255,255,255,0.5); }

        .intro-card { margin: 20px 15px; padding: 20px; background: var(--bg-s-tar); border-radius: var(--radius); border-left: 4px solid var(--rojo-pas-m); }
        .intro-card h1 { font-size: 1.5rem; margin-bottom: 12px; }
        .intro-card p { color: var(--txt-s-sua); font-size: 0.95rem; }

        .section-title { margin: 25px 15px 15px; font-size: 1.25rem; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; display: block; width: 4px; height: 18px; background: var(--oro-mex-p); }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-s-tar); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--bor-sut); display: block; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 0.85rem; color: var(--txt-p-alt); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 0.75rem; color: var(--txt-d-ten); }

        .payment-methods { margin: 30px 15px; background: var(--bg-s-tar); padding: 20px; border-radius: var(--radius); text-align: center; }
        .payment-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 15px; opacity: 0.8; }
        .payment-icons i { font-size: 1.8rem; color: var(--txt-s-sua); }

        .guidelines { padding: 0 15px; margin-bottom: 30px; }
        .guide-item { background: var(--bg-e-sup); padding: 15px; border-radius: var(--radius); margin-bottom: 12px; border: 1px solid var(--bor-sut); }
        .guide-item h2 { font-size: 1.1rem; margin-bottom: 8px; color: var(--oro-bri-a); }
        .guide-item p { font-size: 0.88rem; color: var(--txt-s-sua); }

        .marquee-container { background: #111; padding: 10px 0; margin: 30px 0; border-top: 1px solid var(--oro-mex-p); border-bottom: 1px solid var(--oro-mex-p); overflow: hidden; }
        .marquee-content { display: flex; animation: scroll 40s linear infinite; gap: 30px; }
        .winner-item { white-space: nowrap; font-size: 0.85rem; display: flex; gap: 10px; align-items: center; }
        .winner-amount { color: var(--success); font-weight: bold; }

        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers { display: flex; flex-wrap: wrap; gap: 10px; padding: 15px; justify-content: center; }
        .provider-tag { background: var(--bg-e-sup); padding: 6px 12px; border-radius: 20px; font-size: 0.8rem; border: 1px solid var(--bor-sut); color: var(--oro-mex-p); }

        .reviews { padding: 0 15px; margin: 30px 0; }
        .review-card { background: var(--bg-s-tar); padding: 15px; border-radius: var(--radius); margin-bottom: 15px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 1.5rem; color: var(--oro-mex-p); }
        .stars { color: var(--oro-bri-a); font-size: 0.8rem; }
        .review-date { font-size: 0.75rem; color: var(--txt-d-ten); margin-top: 5px; }

        .faq { padding: 0 15px; margin-bottom: 40px; }
        .faq-item { margin-bottom: 20px; }
        .faq-item h3 { font-size: 1rem; color: var(--oro-bri-a); margin-bottom: 8px; }
        .faq-item p { font-size: 0.9rem; color: var(--txt-s-sua); text-align: justify; }

        .security-section { margin: 20px 15px; padding: 20px; border: 1px dashed var(--bor-fue); border-radius: var(--radius); text-align: center; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-top: 15px; font-size: 1.5rem; color: var(--success); }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-e-sup);
            border-top: 1px solid var(--bor-sut);
            display: flex;
            justify-content: space-around;
            padding: 8px 0;
            z-index: 1001;
        }
        .nav-item { text-align: center; color: var(--txt-s-sua); font-size: 0.7rem; display: flex; flex-direction: column; gap: 4px; }
        .nav-item i { font-size: 1.2rem; color: var(--oro-mex-p); }

        footer { padding: 40px 15px 100px; background: #050505; border-top: 1px solid var(--bor-sut); }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 0.8rem; color: var(--txt-s-sua); text-align: center; }
        .copyright { text-align: center; font-size: 0.75rem; color: var(--txt-d-ten); line-height: 1.4; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .banner { aspect-ratio: 3/1; }
        }