:root {
            --primary: #D4AF37;
            --primary-hover: #F2D06B;
            --primary-active: #AA8B2E;
            --secondary: #00875A;
            --secondary-hover: #00A870;
            --accent: #FF4500;
            --bg-main: #0B0E11;
            --bg-surface: #15191E;
            --bg-elevated: #1F262E;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #FFFFFF;
            --text-secondary: #B1B5C3;
            --text-muted: #777E90;
            --text-brand: #D4AF37;
            --border-default: #2D3748;
            --border-divider: #23262F;
            --font-headings: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
            --font-body: 'Inter', 'Roboto', system-ui, sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: var(--bg-main); color: var(--text-primary); font-family: var(--font-body); line-height: 1.5; overflow-x: hidden; }
        
        header { background-color: var(--bg-surface); height: 60px; 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-divider); }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--text-brand); }
        .header-right { display: flex; gap: 8px; }
        .btn { padding: 8px 16px; border-radius: 6px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background-color: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background-color: var(--primary); color: var(--bg-main); }
        .btn-register:hover { background-color: var(--primary-hover); }

        main { max-width: 1200px; margin: 0 auto; padding: 10px; padding-bottom: 80px; }
        .banner-container { width: 100%; border-radius: 12px; overflow: hidden; margin-bottom: 20px; cursor: pointer; }
        .banner-container img { width: 100%; display: block; aspect-ratio: 2/1; object-fit: cover; }

        .jackpot-box { background: linear-gradient(135deg, #1f262e 0%, #0b0e11 100%); border: 2px solid var(--primary); border-radius: 12px; padding: 20px; text-align: center; margin-bottom: 20px; position: relative; overflow: hidden; }
        .jackpot-title { color: var(--text-brand); font-family: var(--font-headings); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-family: 'Roboto Mono', monospace; font-size: 32px; font-weight: 900; color: #fff; text-shadow: 0 0 10px rgba(212,175,55,0.5); margin: 5px 0; }
        
        .intro-card { background-color: var(--bg-surface); border-radius: 12px; padding: 20px; margin-bottom: 20px; border: 1px solid var(--border-divider); }
        .intro-card h1 { font-family: var(--font-headings); font-size: 1.5rem; color: var(--text-brand); margin-bottom: 10px; line-height: 1.2; }
        .intro-card p { color: var(--text-secondary); font-size: 14px; }

        .section-header { margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-header h2 { font-family: var(--font-headings); font-size: 1.25rem; font-weight: 700; border-left: 4px solid var(--primary); padding-left: 10px; }

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

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

        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-item { background-color: var(--bg-surface); padding: 15px; border-radius: 10px; border-left: 2px solid var(--secondary); }
        .guide-item h3 { font-size: 16px; margin-bottom: 8px; color: var(--text-brand); }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }

        .winners-marquee { background-color: var(--bg-elevated); border-radius: 8px; padding: 10px; overflow: hidden; position: relative; height: 120px; }
        .winners-track { animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 5px; border-bottom: 1px solid var(--border-divider); font-size: 12px; }
        .win-amt { color: var(--secondary); font-weight: bold; }

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

        .comments-list { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .comment-card { background-color: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border-divider); }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-user i { font-size: 20px; color: var(--text-muted); }
        .comment-stars { color: #F2C94C; font-size: 12px; }
        .comment-date { font-size: 11px; color: var(--text-muted); float: right; }
        .comment-text { font-size: 13px; color: var(--text-secondary); font-style: italic; }

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

        .safety-section { background-color: #0b2118; border: 1px solid var(--secondary); border-radius: 12px; padding: 20px; margin-top: 25px; text-align: center; }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--secondary); }

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

        footer { background-color: var(--bg-surface); padding: 30px 15px 100px; border-top: 1px solid var(--border-divider); text-align: center; }
        .footer-contacts { margin-bottom: 20px; display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .footer-contacts a { color: var(--text-brand); font-size: 14px; text-decoration: none; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-muted); font-size: 12px; text-decoration: none; }
        .copyright { font-size: 11px; color: var(--text-muted); }