:root {
            --brand-primary: #D4AF37;
            --brand-primary-hover: #F9E076;
            --brand-primary-active: #996515;
            --brand-secondary: #1A1A1A;
            --brand-accent: #FFD700;
            --bg-default: #080808;
            --bg-paper: #121212;
            --bg-surface: #1C1C1E;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-disabled: #666666;
            --text-on-brand: #000000;
            --text-link: #D4AF37;
            --semantic-success: #00E676;
            --semantic-error: #FF5252;
            --semantic-warning: #FFC107;
            --semantic-info: #2196F3;
            --border-low: #2C2C2E;
            --border-high: #3A3A3C;
            --border-gold: rgba(212, 175, 55, 0.5);
            --font-primary: 'Montserrat', sans-serif;
            --font-secondary: 'Inter', sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-default);
            color: var(--text-primary);
            font-family: var(--font-primary);
            font-size: 16px;
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }

        header {
            height: 60px;
            background: var(--bg-paper);
            border-bottom: 1px solid var(--border-low);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
            text-decoration: none;
        }
        .btn-login { background: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background: var(--brand-primary); color: var(--text-on-brand); }

        main { max-width: 1200px; margin: 0 auto; padding: 15px; }
        .banner { width: 100%; border-radius: 12px; aspect-ratio: 2 / 1; object-fit: cover; cursor: pointer; display: block; }
        
        .jackpot-container {
            background: linear-gradient(135deg, var(--bg-surface) 0%, #2a2a2a 100%);
            margin: 20px 0;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--border-gold);
            box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { color: var(--brand-accent); font-weight: 700; text-transform: uppercase; margin-bottom: 10px; display: block; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: #fff; text-shadow: 0 0 10px var(--brand-primary); }

        .intro-card { background: var(--bg-paper); padding: 25px; border-radius: 15px; margin-bottom: 30px; border: 1px solid var(--border-low); }
        h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 15px; line-height: 1.25; }
        h2 { font-size: 20px; color: var(--text-primary); margin: 25px 0 15px; border-left: 4px solid var(--brand-primary); padding-left: 10px; }
        p { color: var(--text-secondary); margin-bottom: 10px; font-size: 14px; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 30px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-low); text-decoration: none; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card 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: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 12px; color: var(--text-secondary); }

        .trust-section { background: var(--bg-paper); padding: 20px; border-radius: 15px; margin-bottom: 30px; text-align: center; }
        .trust-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; }
        .trust-icons i { font-size: 24px; color: var(--text-secondary); }
        .payment-img { height: 30px; filter: grayscale(1); opacity: 0.7; }

        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .guide-item { background: var(--bg-surface); padding: 20px; border-radius: 12px; border: 1px solid var(--border-low); }
        .guide-item h3 { color: var(--brand-primary); margin-bottom: 10px; font-size: 18px; }

        .marquee-box { background: var(--bg-paper); padding: 15px; border-radius: 10px; overflow: hidden; margin-bottom: 30px; }
        .marquee-content { display: flex; animation: scroll 40s linear infinite; gap: 30px; width: max-content; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .win-record { white-space: nowrap; font-size: 14px; color: var(--text-secondary); }
        .win-record b { color: var(--semantic-success); }

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

        .reviews-grid { display: grid; gap: 15px; margin-bottom: 30px; }
        .review-card { background: var(--bg-surface); padding: 20px; border-radius: 15px; border-left: 3px solid var(--brand-primary); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--brand-primary); }
        .review-stars { color: var(--brand-accent); font-size: 12px; }

        .faq-section { margin-bottom: 30px; }
        .faq-item { background: var(--bg-paper); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 16px; color: var(--brand-primary); margin-bottom: 10px; }
        .faq-item p { font-size: 14px; line-height: 1.6; }

        .security-box { text-align: center; padding: 20px; background: var(--bg-surface); border-radius: 15px; border: 1px solid var(--semantic-info); margin-bottom: 40px; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-top: 15px; font-size: 24px; color: var(--semantic-info); }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-paper); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--border-low); z-index: 1001; }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }

        footer { background: var(--bg-paper); padding: 30px 15px 100px; border-top: 1px solid var(--border-low); text-align: center; }
        .footer-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-contacts a { color: var(--text-link); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .footer-copy { font-size: 12px; color: var(--text-disabled); border-top: 1px solid var(--border-low); padding-top: 20px; }

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