:root {
            --bg-primary: #0B0E11;
            --bg-secondary: #15191C;
            --bg-tertiary: #1E2329;
            --bg-elevated: #2B3139;
            --gold-primary: #FFD700;
            --gold-dark: #B8860B;
            --casino-green: #00875A;
            --accent-red: #E21B23;
            --success: #28A745;
            --error: #DC3545;
            --warning: #FFC107;
            --info: #17A2B8;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-disabled: #6C757D;
            --text-inverse: #000000;
            --border-soft: #2D3339;
            --border-fuerte: #454D56;
            --border-active: #FFD700;
            --font-title: '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-primary);
            font-family: var(--font-body);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }

        h1, h2, h3 { font-family: var(--font-title); color: var(--text-primary); line-height: 1.25; }
        h1 { font-size: 24px; text-align: center; margin-bottom: 15px; font-weight: 800; color: var(--gold-primary); }
        h2 { font-size: 20px; margin: 25px 0 15px; padding-left: 10px; border-left: 4px solid var(--gold-primary); }
        h3 { font-size: 14px; font-weight: 600; margin-top: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        header {
            height: 60px;
            background: var(--bg-secondary);
            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-soft);
        }
        .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(--text-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: transform 0.2s;
        }
        .btn-login { background: transparent; color: var(--gold-primary); border: 1px solid var(--gold-primary); }
        .btn-register { background: var(--gold-primary); color: var(--text-inverse); }
        .btn:active { transform: scale(0.95); }

        main { max-width: 1000px; margin: 0 auto; padding: 10px; }

        .banner { width: 100%; border-radius: 12px; overflow: hidden; margin-bottom: 20px; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            background: linear-gradient(135deg, var(--bg-tertiary) 0%, #2c2100 100%);
            border: 2px solid var(--gold-dark);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 25px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { color: var(--gold-primary); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 14px; margin-bottom: 10px; }
        .jackpot-amount { font-family: var(--font-mono); font-size: 32px; color: var(--text-primary); font-weight: 700; text-shadow: 0 0 10px var(--gold-primary); }

        .platform-intro { background: var(--bg-secondary); padding: 20px; border-radius: 15px; margin-bottom: 25px; border: 1px solid var(--border-soft); }
        .platform-intro p { color: var(--text-secondary); font-size: 14px; text-align: center; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 30px; }
        .game-card { background: var(--bg-tertiary); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-soft); transition: transform 0.2s; }
        .game-card:hover { transform: translateY(-5px); border-color: var(--gold-primary); }
        .game-card .img-box { position: relative; width: 100%; aspect-ratio: 1/1; background: #000; }
        .game-card img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-provider { font-size: 11px; color: var(--gold-primary); text-transform: uppercase; margin-top: 4px; display: block; }

        .payment-methods { background: var(--bg-secondary); padding: 20px; border-radius: 15px; text-align: center; margin-bottom: 30px; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; opacity: 0.8; }
        .payment-icons i { font-size: 30px; color: var(--text-secondary); }

        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .guide-item { background: var(--bg-elevated); padding: 20px; border-radius: 12px; border-left: 4px solid var(--casino-green); }
        .guide-item h3 { font-size: 16px; margin-bottom: 8px; color: var(--gold-primary); white-space: normal; }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }

        .marquee-container { background: var(--bg-secondary); padding: 15px 0; overflow: hidden; margin-bottom: 30px; position: relative; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
        .marquee-content { display: flex; animation: marquee 40s linear infinite; gap: 30px; }
        .marquee-item { white-space: nowrap; font-size: 13px; display: flex; gap: 10px; align-items: center; }
        .win-user { color: var(--gold-primary); font-weight: 600; }
        .win-amount { color: var(--success); font-weight: 700; font-family: var(--font-mono); }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 30px; padding: 0 10px; }
        .provider-tag { background: var(--bg-tertiary); padding: 5px 12px; border-radius: 20px; font-size: 12px; border: 1px solid var(--border-soft); color: var(--text-secondary); }

        .testimonials { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .testi-card { background: var(--bg-secondary); padding: 20px; border-radius: 12px; border: 1px solid var(--border-soft); }
        .testi-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .testi-header i { font-size: 24px; color: var(--text-secondary); }
        .testi-name { font-weight: 600; font-size: 14px; }
        .testi-stars { color: var(--gold-primary); font-size: 12px; }
        .testi-date { font-size: 11px; color: var(--text-disabled); margin-left: auto; }
        .testi-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }

        .faq-section { margin-bottom: 30px; }
        .faq-item { background: var(--bg-secondary); border-radius: 10px; margin-bottom: 10px; overflow: hidden; border: 1px solid var(--border-soft); }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; color: var(--gold-primary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: var(--text-secondary); }

        .responsible-gaming { background: #1a0a0a; border: 1px solid var(--accent-red); padding: 20px; border-radius: 15px; text-align: center; margin-bottom: 20px; }
        .responsible-gaming i { font-size: 40px; color: var(--accent-red); margin-bottom: 10px; }
        .responsible-gaming p { font-size: 12px; color: var(--text-secondary); margin-bottom: 15px; }
        .age-badge { display: inline-block; background: var(--accent-red); color: white; padding: 2px 8px; border-radius: 4px; font-weight: 800; margin-bottom: 10px; }

        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: var(--bg-secondary); display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-soft); z-index: 1001; }
        .nav-item { text-decoration: none; color: var(--text-secondary); display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active, .nav-item:hover { color: var(--gold-primary); }

        footer { background: var(--bg-secondary); padding: 30px 15px; border-top: 1px solid var(--border-soft); text-align: center; }
        .footer-contacts { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-contacts a { color: var(--text-secondary); text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-disabled); text-decoration: none; font-size: 12px; }
        .copyright { font-size: 12px; color: var(--text-disabled); border-top: 1px solid var(--border-soft); padding-top: 20px; }

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