:root {
            --primary: #FFD700;
            --secondary: #B8860B;
            --accent: #FF4500;
            --gold-grad: linear-gradient(180deg, #FFD700 0%, #D4AF37 100%);
            --bg-main: #0F0F0F;
            --bg-surface: #1A1D23;
            --bg-elevated: #252932;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --border-default: #303338;
            --font-main: 'Inter', -apple-system, sans-serif;
            --font-heading: 'Montserrat', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        header {
            height: 60px;
            background: var(--bg-surface);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        header .brand { display: flex; align-items: center; gap: 8px; }
        header .brand img { width: 25px; height: 25px; border-radius: 4px; }
        header .brand strong { font-size: 16px; font-weight: 400; color: var(--primary); font-family: var(--font-heading); }
        header .auth-btns { display: flex; gap: 10px; }
        header .btn {
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        header .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--primary); }
        header .btn-reg { background: var(--gold-grad); color: #000; }
        
        main { max-width: 1000px; margin: 0 auto; padding: 10px; }
        .banner { width: 100%; aspect-ratio: 2/1; border-radius: 12px; overflow: hidden; margin-bottom: 20px; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        
        .jackpot-box {
            background: var(--bg-surface);
            border: 2px solid var(--secondary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-box h2 { font-size: 18px; color: var(--text-secondary); text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { 
            font-family: 'Roboto Mono', monospace; 
            font-size: 32px; 
            font-weight: 900; 
            color: var(--primary);
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
        }

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

        .section-title { font-family: var(--font-heading); 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); border-radius: 2px; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 20px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; text-decoration: none; transition: transform 0.2s; border: 1px solid var(--border-default); }
        .game-card:active { transform: scale(0.96); }
        .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-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 20px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--text-secondary); font-size: 11px; }
        .payment-item i { font-size: 20px; color: var(--primary); }

        .guide-section { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .guide-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; }
        .guide-card h3 { color: var(--primary); margin-bottom: 8px; font-size: 16px; }
        .guide-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }

        .winners-box { background: var(--bg-surface); border-radius: 12px; padding: 15px; max-height: 300px; overflow-y: auto; }
        .winner-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-default); font-size: 13px; }
        .winner-row span:nth-child(2) { color: var(--primary); font-weight: bold; }

        .providers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 20px; }
        .provider-tag { background: var(--bg-elevated); padding: 12px; border-radius: 8px; text-align: center; color: var(--primary); font-weight: bold; border: 1px solid var(--secondary); }

        .review-grid { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-secondary); }
        .review-user { font-weight: bold; font-size: 14px; }
        .stars { color: #FFAB00; font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); font-style: italic; }

        .faq-container { display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
        .faq-item { background: var(--bg-surface); border-radius: 10px; padding: 15px; }
        .faq-item h3 { font-size: 15px; color: var(--primary); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }

        .security-box { background: var(--bg-elevated); border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary); }
        .security-box p { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
        .age-badge { display: inline-block; padding: 5px 12px; border: 2px solid var(--accent); color: var(--accent); border-radius: 5px; font-weight: bold; }

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

        footer { background: var(--bg-surface); padding: 30px 15px 100px; text-align: center; border-top: 1px solid var(--border-default); }
        .footer-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-contacts a { color: var(--primary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .copyright { 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); }
            .review-grid { grid-template-columns: repeat(2, 1fr); display: grid; }
        }