:root {
            --bg-primary: #0b0e11;
            --bg-secondary: #151921;
            --bg-tertiary: #1e232b;
            --overlay: rgba(0, 0, 0, 0.85);
            --gold-primary: #d4af37;
            --gold-glow: #f9e076;
            --emerald: #00a86b;
            --mexico-red: #ce1126;
            --mexico-green: #006847;
            --text-primary: #ffffff;
            --text-secondary: #b1b5c3;
            --text-disabled: #6c727f;
            --link: #f9e076;
            --border-div: #2d323c;
            --border-input: #3b424e;
        }

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

        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }

        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-secondary);
            border-bottom: 1px solid var(--border-div);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--gold-primary); }

        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.875rem;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-input); }
        .btn-register { background: var(--gold-primary); color: #000; }

        main { max-width: 1200px; margin: 0 auto; 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(--mexico-green), var(--bg-secondary));
            margin: 20px 10px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 2px solid var(--gold-primary);
        }
        .jackpot-title { color: var(--gold-glow); font-size: 1.2rem; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount {
            font-family: 'Oswald', sans-serif;
            font-size: 2.5rem;
            color: var(--text-primary);
            text-shadow: 0 0 10px var(--gold-primary);
        }

        .platform-intro { padding: 20px 15px; text-align: center; }
        .platform-intro h1 { font-size: 1.5rem; color: var(--gold-primary); margin-bottom: 15px; }
        .platform-intro p { color: var(--text-secondary); font-size: 0.95rem; }

        .section-header { padding: 15px; display: flex; align-items: center; gap: 10px; }
        .section-header h2 { font-size: 1.25rem; border-left: 4px solid var(--mexico-red); padding-left: 10px; }

        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            padding: 0 15px;
        }
        .game-card {
            background: var(--bg-tertiary);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-div);
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 0.875rem; color: var(--text-primary); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 0.75rem; color: var(--text-secondary); }

        .trust-section {
            background: var(--bg-secondary);
            margin: 20px 0;
            padding: 20px 15px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        .trust-icon { height: 30px; filter: grayscale(1) brightness(2); opacity: 0.7; }

        .guidelines { padding: 20px 15px; display: grid; gap: 20px; }
        .guide-card { background: var(--bg-secondary); padding: 20px; border-radius: 12px; border-top: 3px solid var(--mexico-green); }
        .guide-card h2 { font-size: 1.1rem; margin-bottom: 10px; color: var(--gold-glow); }
        .guide-card p { font-size: 0.875rem; color: var(--text-secondary); }

        .marquee-container {
            background: rgba(0,0,0,0.3);
            margin: 20px 0;
            padding: 10px 0;
            overflow: hidden;
            white-space: nowrap;
        }
        .marquee-content {
            display: inline-block;
            animation: marquee 40s linear infinite;
        }
        .win-item {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 0 25px;
            border-right: 1px solid var(--border-div);
        }
        .win-user { color: var(--gold-glow); font-weight: 600; }
        .win-amount { color: var(--emerald); font-weight: 700; }

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

        .providers-wall {
            padding: 20px 15px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .provider-tag {
            background: var(--bg-tertiary);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: var(--text-secondary);
            border: 1px solid var(--border-div);
        }

        .reviews-grid { padding: 20px 15px; display: grid; gap: 15px; }
        .review-card { background: var(--bg-tertiary); padding: 20px; border-radius: 15px; }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user i { font-size: 1.5rem; color: var(--gold-primary); }
        .stars { color: var(--gold-glow); font-size: 0.8rem; margin-bottom: 8px; }

        .faq-section { padding: 20px 15px; }
        .faq-item { margin-bottom: 15px; background: var(--bg-secondary); border-radius: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: var(--gold-primary); border-bottom: 1px solid var(--border-div); }
        .faq-answer { padding: 15px; font-size: 0.9rem; color: var(--text-secondary); }

        .security-footer {
            text-align: center;
            padding: 30px 15px;
            border-top: 1px solid var(--border-div);
            margin-top: 20px;
        }
        .age-limit {
            display: inline-block;
            border: 2px solid var(--mexico-red);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            line-height: 36px;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-div);
            z-index: 1001;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 0.7rem; }
        .nav-item i { display: block; font-size: 1.2rem; margin-bottom: 4px; }
        .nav-item:nth-child(3) { color: var(--gold-glow); transform: translateY(-5px); }

        footer { background: #05070a; padding: 40px 15px 100px; text-align: center; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-social a { color: var(--text-secondary); font-size: 1.2rem; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 0.8rem; color: var(--text-disabled); }
        .copyright { font-size: 0.75rem; color: var(--text-disabled); margin-top: 20px; }

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