:root {
            --primary: #D4AF37;
            --primary-hover: #F1C40F;
            --secondary: #004D40;
            --accent: #C0C0C0;
            --bg-main: #0B0E11;
            --bg-surface: #1E2329;
            --bg-elevated: #2B3139;
            --bg-contrast: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #929AA5;
            --text-muted: #474D57;
            --text-brand: #D4AF37;
            --success: #0ECB81;
            --error: #F6465D;
            --warning: #F0B90B;
            --win: #FFD700;
            --border-default: #30363D;
            --border-subtle: #21262D;
            --font-primary: 'Inter', 'Montserrat', sans-serif;
            --font-display: 'Bebas Neue', 'Oswald', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: var(--font-display); text-transform: uppercase; font-weight: 700; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-subtle);
            height: 60px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }
        .logo-area { display: flex; align-items: center; gap: 10px; }
        .logo-area img { width: 25px; height: 25px; object-fit: contain; }
        .logo-area strong { font-size: 16px; font-weight: 400; color: var(--text-primary); }
        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--primary); color: var(--bg-contrast); }
        .btn-register:hover { background: var(--primary-hover); }
        .hero-banner { cursor: pointer; aspect-ratio: 2/1; overflow: hidden; background: var(--bg-surface); }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(180deg, var(--secondary), var(--bg-main));
            padding: 20px;
            text-align: center;
            margin: 20px 0;
            border-radius: 12px;
            border: 1px solid var(--primary);
        }
        .jackpot-label { color: var(--primary); font-family: var(--font-display); font-size: 20px; letter-spacing: 2px; }
        .jackpot-amount { color: var(--win); font-size: 40px; font-weight: 900; font-family: var(--font-display); text-shadow: 0 0 15px rgba(212, 175, 55, 0.5); }
        .platform-intro { padding: 30px 15px; text-align: center; background: var(--bg-surface); border-radius: 16px; margin: 20px 0; }
        .platform-intro h1 { font-size: 28px; color: var(--primary); margin-bottom: 15px; }
        .platform-intro p { color: var(--text-secondary); font-size: 16px; max-width: 800px; margin: 0 auto; }
        .section-title { font-size: 24px; margin: 30px 0 20px; padding-left: 10px; border-left: 4px solid var(--primary); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
        .game-card { background: var(--bg-elevated); border-radius: 12px; overflow: hidden; transition: 0.3s; position: relative; border: 1px solid var(--border-subtle); }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-img-wrapper { aspect-ratio: 1/1; overflow: hidden; }
        .game-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text-primary); }
        .game-provider { font-size: 12px; color: var(--text-secondary); margin-top: 4px; }
        .payments-licenses { background: var(--bg-surface); padding: 30px 15px; border-radius: 12px; margin: 30px 0; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; filter: grayscale(1); opacity: 0.7; }
        .payment-icons i { font-size: 32px; color: var(--text-secondary); }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 20px; margin: 30px 0; }
        .guide-item { background: var(--bg-surface); padding: 20px; border-radius: 12px; border-bottom: 2px solid var(--primary); }
        .guide-item h2 { font-size: 20px; color: var(--primary); margin-bottom: 10px; }
        .guide-item p { color: var(--text-secondary); font-size: 14px; }
        .win-marquee { background: var(--bg-contrast); padding: 10px 0; margin: 30px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid var(--primary); border-bottom: 1px solid var(--primary); }
        .win-track { display: inline-flex; animation: scroll-win 40s linear infinite; }
        .win-item { margin: 0 30px; font-size: 14px; color: var(--text-secondary); display: flex; align-items: center; gap: 8px; }
        .win-item strong { color: var(--win); }
        @keyframes scroll-win { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; padding: 20px; background: var(--bg-elevated); border-radius: 12px; margin: 30px 0; }
        .provider-name { font-family: var(--font-display); font-size: 18px; color: var(--text-muted); cursor: default; }
        .provider-name:hover { color: var(--primary); }
        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 30px 0; }
        .review-card { background: var(--bg-surface); padding: 20px; border-radius: 16px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
        .review-avatar { width: 40px; height: 40px; background: var(--bg-elevated); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); }
        .review-name { font-weight: 600; font-size: 14px; }
        .stars { color: var(--warning); font-size: 12px; }
        .review-date { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
        .review-text { font-size: 14px; color: var(--text-secondary); font-style: italic; }
        .faq-section { margin: 40px 0; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px 20px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; cursor: pointer; border-bottom: 1px solid var(--border-subtle); }
        .faq-answer { padding: 15px 20px; color: var(--text-secondary); font-size: 14px; display: block; }
        .responsible-gaming { background: var(--bg-elevated); padding: 30px 20px; border-radius: 16px; text-align: center; margin-bottom: 40px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; font-size: 24px; color: var(--success); }
        .age-badge { display: inline-block; padding: 5px 10px; border: 2px solid var(--error); color: var(--error); border-radius: 50%; font-weight: 900; margin-bottom: 15px; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; 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; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--primary); }
        footer { background: var(--bg-contrast); padding: 40px 15px 100px; color: var(--text-muted); }
        .footer-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-contact a { color: var(--text-secondary); font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: var(--text-muted); }
        .footer-links a:hover { color: var(--primary); }
        .copyright { text-align: center; font-size: 12px; border-top: 1px solid var(--bg-elevated); padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guidelines { grid-template-columns: 1fr 1fr; }
            .reviews-grid { grid-template-columns: repeat(2, 1fr); }
            .hero-banner { aspect-ratio: 3/1; }
        }