:root {
            --primary: #D4AF37;
            --primary-hover: #F1C40F;
            --secondary: #059669;
            --secondary-hover: #10B981;
            --accent: #FF4500;
            --bg-main: #0D0D0D;
            --bg-surface: #1A1A1A;
            --bg-elevated: #262626;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #737373;
            --text-contrast: #000000;
            --link: #D4AF37;
            --link-hover: #F1C40F;
            --success: #00C853;
            --error: #FF3B30;
            --warning: #FFCC00;
            --info: #007AFF;
            --border-default: #333333;
            --border-strong: #4D4D4D;
            --border-gold: #D4AF37;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        a { color: inherit; text-decoration: none; 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);
            border-bottom: 1px solid var(--border-default);
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .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(--primary); }
        .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.3s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-strong); }
        .btn-register { background: var(--primary); color: var(--text-contrast); }
        .btn-register:hover { background: var(--primary-hover); }
        .banner-container { margin: 15px 0; cursor: pointer; border-radius: 12px; overflow: hidden; }
        .banner-container img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%);
            border: 2px solid var(--border-gold);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { color: var(--primary); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; font-weight: 900; margin-bottom: 10px; }
        .jackpot-amount { font-family: 'JetBrains Mono', monospace; font-size: 32px; color: var(--primary); font-weight: 900; }
        .intro-card { background: var(--bg-surface); padding: 25px; border-radius: 15px; margin-bottom: 30px; border-left: 5px solid var(--primary); }
        .intro-card h1 { font-size: 1.5rem; margin-bottom: 15px; color: var(--primary); }
        .intro-card p { color: var(--text-secondary); font-size: 15px; }
        .section-title { font-size: 1.25rem; 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: 15px; margin-bottom: 30px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-default); transition: 0.3s; }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-card img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
        .game-card h3 { font-size: 14px; padding: 10px; text-align: center; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-license { background: var(--bg-surface); border-radius: 15px; padding: 20px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-bottom: 30px; }
        .pl-item { text-align: center; font-size: 10px; color: var(--text-secondary); }
        .pl-item i { display: block; font-size: 24px; color: var(--primary); margin-bottom: 8px; }
        .guides-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .guide-item { background: var(--bg-elevated); padding: 20px; border-radius: 12px; }
        .guide-item h2 { font-size: 18px; margin-bottom: 10px; color: var(--primary); }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .marquee-container { background: var(--bg-surface); padding: 15px 0; overflow: hidden; margin-bottom: 30px; border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); }
        .marquee-content { display: flex; gap: 30px; animation: marquee 40s linear infinite; white-space: nowrap; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-tag { background: var(--bg-elevated); padding: 8px 15px; border-radius: 20px; font-size: 13px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--border-strong); }
        .winner-tag span { color: var(--success); font-weight: bold; }
        .providers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 30px; }
        .provider-block { background: var(--bg-elevated); padding: 15px; text-align: center; font-weight: bold; border-radius: 8px; border: 1px solid var(--border-default); color: var(--primary); }
        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .review-card { background: var(--bg-surface); padding: 20px; border-radius: 15px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .review-info h3 { font-size: 15px; }
        .stars { color: var(--warning); font-size: 12px; }
        .review-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: var(--bg-surface); border-radius: 10px; margin-bottom: 10px; overflow: hidden; border: 1px solid var(--border-default); }
        .faq-question { padding: 15px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 15px; }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); }
        .security-section { background: var(--bg-elevated); padding: 25px; border-radius: 15px; text-align: center; margin-bottom: 30px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: var(--primary); }
        .security-text { font-size: 13px; color: var(--text-secondary); margin-bottom: 15px; }
        .eighteen-plus { display: inline-block; border: 2px solid var(--error); color: var(--error); border-radius: 50%; width: 40px; height: 40px; line-height: 36px; font-weight: bold; font-size: 14px; margin-bottom: 10px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { text-align: center; font-size: 11px; color: var(--text-muted); }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: var(--primary); }
        footer { background: var(--bg-surface); padding: 40px 0 20px; text-align: center; border-top: 1px solid var(--border-default); }
        .footer-contacts { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
        .footer-contacts a { font-size: 14px; color: var(--text-secondary); display: flex; align-items: center; gap: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: left; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: var(--text-muted); }
        .copyright { font-size: 12px; color: var(--text-muted); padding-top: 20px; border-top: 1px solid var(--border-default); }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guides-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
            .payment-license { grid-template-columns: repeat(8, 1fr); }
        }