:root {
            --primary: #FCD535;
            --primary-hover: #FFE066;
            --secondary: #1E2329;
            --accent: #F0B90B;
            --bg-base: #0B0E11;
            --bg-surface: #181A20;
            --bg-elevated: #1E2329;
            --text-primary: #EAECEF;
            --text-secondary: #929AA5;
            --text-accent: #FCD535;
            --border-subtle: #2B3139;
            --border-default: #474D57;
            --radius-md: 12px;
            --radius-lg: 16px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.5;
            padding-bottom: 80px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--text-primary); }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; height: auto; display: block; }
        
        header {
            background-color: var(--bg-surface);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-subtle);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; text-transform: uppercase; letter-spacing: 1px; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 8px; font-weight: 600; cursor: pointer; border: none; font-size: 14px; }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--primary); color: #000; }

        .banner { width: 100%; cursor: pointer; aspect-ratio: 2/1; overflow: hidden; margin-bottom: 20px; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .container { padding: 0 16px; max-width: 1200px; margin: 0 auto; }

        .jackpot-section {
            background: linear-gradient(135deg, #1e2329 0%, #0b0e11 100%);
            border: 2px solid var(--primary);
            border-radius: var(--radius-lg);
            padding: 24px;
            text-align: center;
            margin-bottom: 24px;
            box-shadow: 0 0 20px rgba(252, 213, 53, 0.2);
        }
        .jackpot-label { color: var(--primary); font-size: 14px; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; }
        .jackpot-amount { font-size: 32px; font-family: 'Roboto Mono', monospace; font-weight: 900; color: #fff; text-shadow: 0 0 10px rgba(252, 213, 53, 0.5); }

        .intro-card {
            background: var(--bg-surface);
            padding: 24px;
            border-radius: var(--radius-lg);
            margin-bottom: 24px;
            border-left: 4px solid var(--primary);
        }
        .intro-card h1 { font-size: 24px; margin-bottom: 12px; line-height: 1.2; color: var(--primary); }
        .intro-card p { color: var(--text-secondary); font-size: 15px; }

        .section-title { font-size: 20px; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
        .section-title::before { content: ''; width: 4px; height: 20px; background: var(--primary); border-radius: 2px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
        .game-card { background: var(--bg-surface); border-radius: var(--radius-md); overflow: hidden; transition: transform 0.2s; border: 1px solid var(--border-subtle); }
        .game-card:active { transform: scale(0.98); }
        .game-img { aspect-ratio: 1/1; width: 100%; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 2px; }
        .game-provider { font-size: 12px; color: var(--text-secondary); }

        .trust-section { background: var(--bg-surface); padding: 20px; border-radius: var(--radius-lg); margin-bottom: 24px; }
        .trust-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; opacity: 0.8; }
        .trust-icons i { font-size: 24px; color: var(--text-secondary); }
        .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 15px; }
        .trust-item { font-size: 10px; text-align: center; color: var(--text-secondary); }

        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
        .guide-item { background: var(--bg-elevated); padding: 16px; border-radius: var(--radius-md); }
        .guide-item h2 { font-size: 18px; margin-bottom: 8px; color: var(--primary); }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }

        .marquee-container { background: var(--secondary); padding: 12px 0; overflow: hidden; white-space: nowrap; margin-bottom: 24px; border-radius: 8px; }
        .marquee-content { display: inline-block; animation: marquee 30s linear infinite; }
        .winner-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--bg-surface); padding: 6px 12px; border-radius: 20px; margin: 0 10px; border: 1px solid var(--border-subtle); font-size: 13px; }
        .winner-tag span { color: var(--primary); font-weight: bold; }

        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .provider-wall { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 24px; }
        .provider-badge { background: var(--bg-surface); padding: 8px 16px; border-radius: 4px; border: 1px solid var(--border-subtle); font-size: 12px; color: var(--text-secondary); font-weight: 600; }

        .review-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
        .review-card { background: var(--bg-surface); padding: 16px; border-radius: var(--radius-md); border: 1px solid var(--border-subtle); }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
        .user-info { display: flex; align-items: center; gap: 10px; }
        .user-info i { font-size: 24px; color: var(--primary); }
        .star-rating { color: var(--accent); font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); font-style: italic; }

        .faq-section { margin-bottom: 24px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 16px; font-weight: 600; cursor: pointer; color: var(--text-primary); border-bottom: 1px solid var(--border-subtle); }
        .faq-answer { padding: 16px; color: var(--text-secondary); font-size: 14px; }

        .security-section { text-align: center; background: var(--bg-elevated); padding: 24px; border-radius: var(--radius-lg); margin-bottom: 40px; }
        .security-logos { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: var(--primary); }
        .security-text { font-size: 12px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-surface); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--border-subtle); z-index: 1000; box-shadow: 0 -4px 10px rgba(0,0,0,0.3); }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 12px; color: var(--text-secondary); }
        .nav-item i { font-size: 20px; }
        .nav-item:nth-child(3) { color: var(--primary); transform: translateY(-5px); }

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