:root {
            --primary: #D4AF37;
            --primary-hover: #F1D592;
            --secondary: #00A859;
            --accent: #FFD700;
            --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F1D592 50%, #9A7B2C 100%);
            --bg-main: #0B0E11;
            --bg-surface: #151921;
            --bg-card: #1E232B;
            --bg-overlay: rgba(0, 0, 0, 0.9);
            --text-primary: #FFFFFF;
            --text-secondary: #9BA3AF;
            --text-muted: #6B7280;
            --text-brand: #D4AF37;
            --border-default: #2D3139;
            --border-brand: #D4AF37;
            --jackpot-color: #FF4D4D;
            --font-headings: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            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-headings); font-weight: 700; color: var(--text-primary); }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header {
            background-color: var(--bg-surface);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        .header-content { display: flex; justify-content: space-between; align-items: center; }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-area strong { font-size: 16px; font-weight: 400; color: var(--text-brand); }
        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.2s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--gold-gradient); color: #000; }
        .banner { margin-bottom: 20px; cursor: pointer; border-radius: 12px; overflow: hidden; aspect-ratio: 2/1; }
        .jackpot-section {
            background: #1a1a1a;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 2px solid var(--primary);
            margin-bottom: 25px;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { color: var(--jackpot-color); font-weight: 900; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
        .jackpot-amount { font-size: 36px; font-weight: 900; color: var(--accent); font-family: 'Roboto Mono', monospace; }
        .platform-intro { text-align: center; margin-bottom: 30px; }
        .platform-intro h1 { font-size: 24px; margin-bottom: 10px; color: var(--primary); }
        .platform-intro p { color: var(--text-secondary); font-size: 14px; }
        .section-title { font-size: 20px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ''; width: 4px; height: 20px; background: var(--primary); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card {
            background: var(--bg-card);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            transition: transform 0.2s;
        }
        .game-card:active { transform: scale(0.97); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: var(--text-muted); text-transform: uppercase; }
        .payment-methods {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            margin: 30px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            align-items: center;
        }
        .payment-methods i { font-size: 32px; color: var(--text-secondary); opacity: 0.8; }
        .pautas-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 30px 0; }
        .pauta-item { background: var(--bg-card); padding: 20px; border-radius: 12px; border-left: 3px solid var(--primary); }
        .pauta-item h2 { font-size: 18px; margin-bottom: 10px; }
        .pauta-item p { font-size: 14px; color: var(--text-secondary); }
        .winners-marquee {
            background: rgba(0,0,0,0.3);
            padding: 15px 0;
            overflow: hidden;
            white-space: nowrap;
            margin: 25px 0;
            border-top: 1px solid var(--border-default);
            border-bottom: 1px solid var(--border-default);
        }
        .marquee-content { display: inline-block; animation: scroll 30s linear infinite; }
        .winner-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-surface);
            padding: 6px 12px;
            border-radius: 20px;
            margin-right: 15px;
            font-size: 13px;
        }
        .winner-tag span { color: var(--secondary); font-weight: bold; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin: 30px 0;
            opacity: 0.7;
        }
        .provider-tag { background: var(--bg-card); padding: 5px 12px; border-radius: 4px; font-size: 12px; color: var(--text-secondary); border: 1px solid var(--border-default); }
        .testimonials { display: flex; flex-direction: column; gap: 15px; margin: 30px 0; }
        .testimonial-card { background: var(--bg-card); padding: 20px; border-radius: 12px; }
        .testi-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
        .testi-user { display: flex; align-items: center; gap: 10px; }
        .testi-user i { font-size: 20px; color: var(--primary); }
        .stars { color: var(--accent); font-size: 12px; }
        .testi-date { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
        .testi-content { font-size: 14px; color: var(--text-secondary); font-style: italic; }
        .faq-section { margin: 30px 0; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; color: var(--text-secondary); font-size: 14px; }
        .responsible-gaming {
            text-align: center;
            padding: 30px 20px;
            background: var(--bg-surface);
            border-radius: 12px;
            margin: 30px 0;
        }
        .responsible-gaming i { font-size: 40px; color: var(--jackpot-color); margin-bottom: 15px; }
        .responsible-gaming h2 { font-size: 20px; margin-bottom: 10px; }
        .age-limit { display: inline-block; border: 2px solid #ef4444; color: #ef4444; font-weight: 900; border-radius: 50%; width: 40px; height: 40px; line-height: 36px; font-size: 16px; margin: 10px 0; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 12px; color: var(--text-secondary); }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--primary); }
        footer { background: #07090c; padding: 40px 0 100px; border-top: 1px solid var(--border-default); }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-social a { color: var(--text-secondary); font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; margin-bottom: 30px; }
        .footer-links a { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
        .footer-copy { text-align: center; font-size: 12px; color: var(--text-muted); padding: 0 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .pautas-grid { grid-template-columns: repeat(2, 1fr); }
        }