:root {
            --primary-gold: #FFD700;
            --secondary-gold: #B8860B;
            --accent-red: #E63946;
            --premium-black: #050505;
            --bg-main: #0A0A0A;
            --bg-surface: #161616;
            --bg-elevated: #1F1F1F;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --win-highlight: #00FF41;
            --font-heading: 'Montserrat', 'Inter', -apple-system, sans-serif;
            --font-body: 'Inter', 'Roboto', sans-serif;
            --font-num: 'Oswald', sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { background-color: var(--bg-main); color: var(--text-primary); font-family: var(--font-body); line-height: 1.5; -webkit-tap-highlight-color: transparent; }
        a { text-decoration: none; color: inherit; }

        header {
            position: sticky; top: 0; z-index: 1000;
            background: var(--bg-surface); border-bottom: 1px solid #2C2C2C;
            display: flex; justify-content: space-between; align-items: center;
            padding: 10px 15px; height: 60px;
        }
        header .brand { display: flex; align-items: center; gap: 8px; }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        header .brand strong { font-family: var(--font-heading); font-size: 16px; font-weight: 400; color: var(--primary-gold); }
        header .auth-btns { display: flex; gap: 8px; }
        header .btn { 
            padding: 6px 14px; border-radius: 6px; font-weight: 600; font-size: 14px; cursor: pointer; border: none;
            transition: transform 0.2s;
        }
        header .btn-login { background: transparent; color: var(--primary-gold); border: 1px solid var(--primary-gold); }
        header .btn-reg { background: var(--primary-gold); color: var(--premium-black); }

        main { padding-bottom: 80px; max-width: 800px; margin: 0 auto; }
        
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            background: linear-gradient(145deg, #1a1a1a, #050505);
            margin: 15px; padding: 20px; border-radius: 12px; border: 1px solid var(--secondary-gold);
            text-align: center; box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
        }
        .jackpot-title { color: var(--primary-gold); font-family: var(--font-heading); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-family: var(--font-num); font-size: 32px; color: var(--win-highlight); font-weight: 900; text-shadow: 0 0 10px rgba(0, 255, 65, 0.3); }

        .intro-card { margin: 15px; padding: 20px; background: var(--bg-surface); border-radius: 15px; border-left: 4px solid var(--primary-gold); }
        .intro-card h1 { font-family: var(--font-heading); font-size: 20px; color: var(--primary-gold); margin-bottom: 10px; }
        .intro-card p { color: var(--text-secondary); font-size: 14px; }

        .section-title { padding: 0 15px; margin: 20px 0 10px; font-family: var(--font-heading); font-size: 18px; display: flex; align-items: center; gap: 8px; }
        .section-title::before { content: ''; width: 4px; height: 18px; background: var(--accent-red); border-radius: 2px; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 15px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; border: 1px solid #2C2C2C; transition: 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; color: var(--text-primary); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .payment-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; }
        .pay-item { background: var(--bg-elevated); padding: 15px 5px; border-radius: 8px; text-align: center; font-size: 10px; color: var(--text-secondary); }
        .pay-item i { display: block; font-size: 20px; color: var(--primary-gold); margin-bottom: 5px; }

        .guides-section { padding: 15px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid #2C2C2C; }
        .guide-item h3 { color: var(--primary-gold); font-size: 16px; margin-bottom: 8px; }
        .guide-item p { color: var(--text-secondary); font-size: 13px; }

        .winning-records { margin: 15px; background: var(--bg-surface); border-radius: 12px; overflow: hidden; }
        .win-row { display: flex; justify-content: space-between; padding: 12px 15px; border-bottom: 1px solid #2C2C2C; font-size: 13px; }
        .win-user { color: var(--primary-gold); font-weight: 600; }
        .win-amount { color: var(--win-highlight); font-family: var(--font-num); }

        .providers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 15px; }
        .provider-box { padding: 15px; text-align: center; border-radius: 8px; font-weight: bold; background: linear-gradient(45deg, #1f1f1f, #2c2c2c); border: 1px solid #3d3d3d; color: var(--primary-gold); }

        .reviews { padding: 15px; }
        .review-card { background: var(--bg-elevated); padding: 15px; border-radius: 12px; margin-bottom: 15px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--primary-gold); }
        .stars { color: #FFC107; font-size: 12px; margin-bottom: 8px; }
        .review-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .review-date { font-size: 11px; color: var(--text-muted); margin-top: 8px; text-align: right; }

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

        .security-section { padding: 20px 15px; background: var(--premium-black); border-top: 1px solid var(--secondary-gold); text-align: center; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary-gold); }
        .responsible-text { font-size: 12px; color: var(--text-muted); max-width: 500px; margin: 0 auto; }
        .age-limit { display: inline-block; border: 2px solid var(--accent-red); color: var(--accent-red); padding: 2px 8px; border-radius: 50%; font-weight: bold; margin-top: 10px; }

        .navigator {
            position: fixed; bottom: 0; left: 0; right: 0; height: 65px;
            background: var(--bg-surface); border-top: 1px solid #2C2C2C;
            display: flex; justify-content: space-around; align-items: center; z-index: 1000;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 11px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: var(--primary-gold); }

        footer { padding: 30px 15px 100px; background: var(--premium-black); border-top: 1px solid #222; text-align: center; }
        .footer-contacts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-contacts a { background: var(--bg-surface); padding: 10px; border-radius: 6px; font-size: 13px; border: 1px solid #333; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; text-align: left; }
        .footer-links a { color: var(--text-secondary); font-size: 12px; }
        .footer-copy { font-size: 12px; color: var(--text-muted); border-top: 1px solid #222; padding-top: 20px; }