:root {
            --primary: #D4AF37;
            --primary-hover: #F9E076;
            --primary-active: #996515;
            --secondary: #1A1A1A;
            --accent: #FFD700;
            --bg-base: #050505;
            --bg-surface: #121212;
            --bg-elevated: #1E1E1E;
            --text-primary: #FFFFFF;
            --text-secondary: #BDBDBD;
            --text-muted: #757575;
            --on-brand: #000000;
            --success: #00C853;
            --error: #D50000;
            --win: #FFD700;
            --border-default: #2C2C2E;
            --radius-md: 12px;
            --radius-lg: 20px;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.5;
            padding-bottom: 80px;
        }

        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--primary); }

        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }

        header {
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            padding: 12px 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; text-decoration: none; color: var(--text-primary); }
        .logo-area img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-area strong { font-size: 16px; font-weight: 400; }

        .auth-btns { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
            text-decoration: none;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-reg { background: var(--primary); color: var(--on-brand); }
        .btn:hover { filter: brightness(1.2); }

        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; border-radius: var(--radius-md); overflow: hidden; margin: 15px 0; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            background: linear-gradient(135deg, #1A1A1A 0%, #000 100%);
            border: 2px solid var(--primary);
            border-radius: var(--radius-md);
            padding: 20px;
            text-align: center;
            margin: 20px 0;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title { font-size: 14px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; color: var(--win); font-weight: 900; font-family: 'Montserrat', sans-serif; margin-top: 5px; }

        .intro-card { background: var(--bg-surface); padding: 25px; border-radius: var(--radius-lg); margin: 20px 0; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 24px; margin-bottom: 12px; line-height: 1.2; }
        .intro-card 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); display: inline-block; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--bg-surface); border-radius: var(--radius-md); overflow: hidden; text-decoration: none; transition: transform 0.2s; border: 1px solid var(--border-default); }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; color: var(--text-primary); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: var(--text-muted); text-transform: uppercase; }

        .trust-section { background: var(--bg-elevated); padding: 20px; border-radius: var(--radius-md); text-align: center; margin: 25px 0; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; }
        .pay-icon { background: #fff; padding: 5px 10px; border-radius: 4px; font-weight: bold; color: #000; font-size: 12px; min-width: 60px; }

        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 25px 0; }
        .guide-item { background: var(--bg-surface); padding: 20px; border-radius: var(--radius-md); border-top: 2px solid var(--primary); }
        .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-elevated); padding: 15px 0; overflow: hidden; margin: 25px 0; position: relative; }
        .marquee-content { display: flex; animation: scroll 40s linear infinite; }
        .win-tag { white-space: nowrap; padding: 0 20px; border-right: 1px solid var(--border-default); display: flex; align-items: center; gap: 10px; }
        .win-tag b { color: var(--win); }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .provider-wall { background: var(--bg-surface); padding: 20px; border-radius: var(--radius-md); display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .provider-chip { padding: 6px 12px; background: var(--bg-elevated); border: 1px solid var(--border-default); border-radius: 20px; font-size: 12px; color: var(--text-secondary); }

        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 25px 0; }
        .review-card { background: var(--bg-elevated); padding: 20px; border-radius: var(--radius-md); position: relative; }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--primary); }
        .review-stars { color: var(--accent); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-muted); float: right; }

        .faq-section { margin: 25px 0; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-q { padding: 15px; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; border-bottom: 1px solid var(--border-default); font-size: 15px; }
        .faq-a { padding: 15px; color: var(--text-secondary); font-size: 14px; display: block; }

        .security-section { text-align: center; padding: 30px 20px; background: #000; border-radius: var(--radius-md); margin: 25px 0; border: 1px dashed var(--border-default); }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--text-muted); }
        .age-limit { display: inline-block; border: 2px solid var(--error); color: var(--error); border-radius: 50%; width: 40px; height: 40px; line-height: 36px; font-weight: 900; margin-bottom: 10px; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-surface); border-top: 1px solid var(--border-default); display: flex; justify-content: space-around; padding: 10px 0; z-index: 1001; box-shadow: 0 -5px 15px rgba(0,0,0,0.5); }
        .nav-item { text-decoration: none; color: var(--text-muted); text-align: center; flex: 1; transition: 0.2s; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item span { font-size: 11px; font-weight: 500; }
        .nav-item:active { color: var(--primary); }

        footer { background: var(--bg-surface); padding: 40px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-contacts { margin-bottom: 30px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
        .footer-contacts a { color: var(--text-secondary); text-decoration: none; font-size: 13px; display: flex; align-items: center; gap: 8px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .copyright { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guidelines-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
        }