:root {
            --bg-primary: #0A0E14;
            --bg-secondary: #161B22;
            --bg-tertiary: #1E293B;
            --overlay: rgba(0, 0, 0, 0.85);
            --gold-primary: #D4AF37;
            --gold-bright: #F9E076;
            --gold-dark: #996515;
            --mx-green: #006847;
            --mx-red: #CE1126;
            --success: #00C853;
            --error: #FF5252;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --border-sutil: #2C2F33;
            --font-main: 'Inter', system-ui, sans-serif;
            --font-headings: 'Montserrat', sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            padding-bottom: 70px;
        }

        header {
            background: var(--bg-secondary);
            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);
        }

        .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; font-family: var(--font-headings); }

        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
            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(--bg-primary); }
        .btn:active { transform: scale(0.95); }

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

        .jackpot-box {
            background: linear-gradient(135deg, var(--bg-tertiary), #000);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--gold-dark);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title { color: var(--gold-bright); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; font-family: 'Roboto Mono', monospace; }

        .platform-intro { padding: 20px; text-align: center; }
        .platform-intro h1 { font-family: var(--font-headings); font-size: 24px; color: var(--gold-primary); margin-bottom: 10px; }
        .platform-intro p { color: var(--text-secondary); font-size: 14px; }

        .section-title { padding: 15px 15px 5px; font-family: var(--font-headings); font-size: 18px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 18px; background: var(--mx-green); border-radius: 2px; }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 15px;
        }
        .game-card {
            background: var(--bg-secondary);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--border-sutil);
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }
        .game-info { padding: 8px; }
        .game-info h3 { font-size: 13px; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 11px; color: var(--text-secondary); }

        .trust-section { background: var(--bg-secondary); margin: 20px 0; padding: 20px 15px; text-align: center; }
        .trust-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; opacity: 0.7; }
        .trust-icons i { font-size: 30px; }

        .guidelines { padding: 15px; display: grid; gap: 15px; }
        .guide-card { background: var(--bg-tertiary); padding: 15px; border-radius: 10px; border-left: 3px solid var(--gold-primary); }
        .guide-card h2 { font-size: 16px; margin-bottom: 8px; color: var(--gold-bright); }
        .guide-card p { font-size: 13px; color: var(--text-secondary); }

        .marquee-container {
            background: #000;
            padding: 10px 0;
            overflow: hidden;
            white-space: nowrap;
            border-top: 1px solid var(--border-sutil);
            border-bottom: 1px solid var(--border-sutil);
        }
        .marquee-content { display: inline-block; animation: scroll 40s linear infinite; }
        .win-tag { display: inline-flex; align-items: center; gap: 8px; margin-right: 30px; font-size: 12px; }
        .win-tag b { color: var(--success); }

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

        .reviews { padding: 15px; overflow-x: auto; display: flex; gap: 15px; }
        .review-card {
            min-width: 280px;
            background: var(--bg-secondary);
            padding: 15px;
            border-radius: 12px;
            border: 1px solid var(--border-sutil);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--gold-primary); }
        .stars { color: var(--gold-bright); font-size: 12px; }

        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-secondary); border-radius: 8px; margin-bottom: 10px; padding: 15px; }
        .faq-item h2 { font-size: 15px; color: var(--gold-primary); margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: var(--text-secondary); }

        .security-section { padding: 20px 15px; text-align: center; border-top: 1px solid var(--border-sutil); }
        .age-badge { display: inline-block; border: 2px solid var(--mx-red); color: var(--mx-red); border-radius: 50%; width: 40px; height: 40px; line-height: 36px; 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-sutil);
            z-index: 1000;
        }
        .nav-item { text-decoration: none; color: var(--text-secondary); text-align: center; font-size: 11px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item:nth-child(3) i { font-size: 28px; color: var(--gold-primary); margin-top: -10px; }

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

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            header, main, footer { max-width: 800px; margin: 0 auto; }
        }