:root {
            --primary: #D4AF37;
            --primary-hover: #F2D472;
            --secondary: #1A1C20;
            --accent: #FFD700;
            --gold-gradient: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
            --bg-base: #0B0C0E;
            --bg-surface: #16181D;
            --bg-elevated: #22252B;
            --text-primary: #FFFFFF;
            --text-secondary: #9FA3A9;
            --text-muted: #63676D;
            --border-subtle: #2D3139;
            --success: #00C853;
            --jackpot-color: #E91E63;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; }
        .container { padding: 0 15px; max-width: 1200px; margin: 0 auto; }

        header {
            background-color: var(--bg-surface);
            padding: 12px 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-subtle);
        }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box 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(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--gold-gradient); color: #000; }

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

        .jackpot-card {
            background: var(--bg-elevated);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { font-size: 14px; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
        .jackpot-amount { 
            font-family: 'Roboto Mono', monospace; 
            font-size: 28px; 
            color: var(--jackpot-color); 
            font-weight: 700;
            text-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
        }

        .intro-card { margin: 20px 15px; padding: 20px; background: var(--bg-surface); border-radius: 12px; }
        .intro-card h1 { font-size: 20px; color: var(--primary); margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); }

        .section-title { margin: 25px 15px 15px; font-size: 18px; border-left: 4px solid var(--primary); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-subtle); transition: 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 11px; color: var(--text-muted); }

        .trust-section { background: var(--bg-surface); margin: 25px 15px; padding: 20px; border-radius: 12px; text-align: center; }
        .payment-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 15px; }
        .payment-icons i { font-size: 24px; color: var(--text-secondary); }

        .guidelines { padding: 0 15px; }
        .guide-item { background: var(--bg-elevated); padding: 15px; border-radius: 10px; margin-bottom: 12px; }
        .guide-item h2 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }

        .marquee-container { background: var(--bg-surface); padding: 15px 0; margin: 25px 0; border-y: 1px solid var(--border-subtle); }
        .marquee-content { display: flex; overflow: hidden; position: relative; }
        .marquee-track { display: flex; animation: scroll 40s linear infinite; }
        .win-item { flex: 0 0 250px; background: var(--bg-elevated); margin: 0 10px; padding: 10px; border-radius: 8px; display: flex; align-items: center; gap: 10px; }
        .win-item i { color: var(--primary); }
        .win-text { font-size: 12px; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; padding: 0 15px; }
        .provider-tag { background: var(--bg-surface); padding: 8px 15px; border-radius: 20px; border: 1px solid var(--border-subtle); font-size: 12px; color: var(--text-secondary); }

        .reviews { padding: 0 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--primary); }
        .review-meta { flex: 1; }
        .review-user { font-weight: 600; font-size: 14px; display: block; }
        .review-stars { color: var(--accent); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }

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

        .responsible-gaming { text-align: center; padding: 30px 15px; background: var(--bg-surface); margin-top: 30px; }
        .responsible-icons { display: flex; justify-content: center; gap: 20px; margin: 15px 0; font-size: 24px; color: var(--text-muted); }
        .age-limit { border: 2px solid var(--text-muted); border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; margin: 0 auto; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-modal);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-subtle);
            z-index: 1001;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 11px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }

        footer { background: var(--bg-base); padding: 40px 15px 20px; border-top: 1px solid var(--border-subtle); }
        .footer-contacts { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 30px; }
        .footer-contacts a { font-size: 13px; color: var(--primary); }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; text-align: center; }
        .footer-grid a { display: block; color: var(--text-muted); font-size: 13px; margin-bottom: 8px; }
        .copyright { text-align: center; font-size: 12px; color: var(--text-muted); padding-top: 20px; border-top: 1px solid var(--border-subtle); }