:root {
            --primary: #FFD700;
            --primary-variant: #B8860B;
            --secondary: #E5E5E5;
            --accent: #FF4500;
            --trust-blue: #0056b3;
            --bg-base: #0A0A0A;
            --bg-surface: #161616;
            --bg-elevated: #222222;
            --text-primary: #FFFFFF;
            --text-secondary: #A0A0A0;
            --border-subtle: #2A2A2A;
            --win-color: #FFD700;
            --heading-font: 'Montserrat', 'Oswald', 'Inter', sans-serif;
            --body-font: 'Inter', 'Roboto', 'Helvetica Neue', sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: var(--bg-base); color: var(--text-primary); font-family: var(--body-font); line-height: 1.5; overflow-x: hidden; }
        a { text-decoration: none; color: inherit; }

        header { background: rgba(10, 10, 10, 0.95); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--border-subtle); padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; }
        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(--heading-font); }
        header .auth-btns { display: flex; gap: 10px; }
        header .auth-btns button { border: none; padding: 8px 16px; border-radius: 20px; font-weight: 600; cursor: pointer; transition: 0.3s; font-size: 14px; }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary) !important; }
        .btn-register { background: var(--primary); color: #000; }

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

        .jackpot-card { background: linear-gradient(145deg, #161616, #222); margin: 15px; padding: 20px; border-radius: 15px; border: 1px solid var(--primary-variant); text-align: center; }
        .jackpot-title { font-family: var(--heading-font); color: var(--primary); font-size: 18px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-family: 'Oswald', sans-serif; font-size: 36px; color: var(--win-color); font-weight: 900; margin: 10px 0; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }

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

        .section-header { margin: 20px 15px 10px; display: flex; align-items: center; gap: 10px; }
        .section-header h2 { font-family: var(--heading-font); font-size: 20px; border-left: 3px solid var(--primary); padding-left: 10px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-elevated); border-radius: 12px; overflow: hidden; transition: transform 0.2s; position: relative; aspect-ratio: 1/1; }
        .game-card img { width: 100%; height: 100%; object-fit: cover; }
        .game-card h3 { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,0.7); padding: 5px; font-size: 12px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

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

        .guides-container { padding: 0 15px; }
        .guide-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 12px; }
        .guide-card h3 { color: var(--primary); margin-bottom: 8px; font-size: 16px; }
        .guide-card p { font-size: 13px; color: var(--text-secondary); }

        .winners-list { margin: 15px; background: var(--bg-surface); border-radius: 15px; padding: 10px; }
        .winner-row { display: flex; justify-content: space-between; padding: 10px; border-bottom: 1px solid var(--border-subtle); font-size: 12px; }
        .winner-row:last-child { border-bottom: none; }
        .winner-user { color: var(--primary); font-weight: bold; }
        .winner-win { color: var(--win-color); }

        .providers-wall { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 15px; }
        .provider-tag { flex: 1 1 calc(50% - 8px); background: linear-gradient(90deg, #161616, #2a2a2a); padding: 10px; border-radius: 6px; text-align: center; font-weight: 600; color: var(--secondary); font-size: 13px; border: 1px solid #333; }

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

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

        .security-section { margin: 20px 15px; padding: 20px; background: rgba(0, 86, 179, 0.1); border-radius: 15px; border: 1px solid var(--trust-blue); text-align: center; }
        .security-section i { font-size: 30px; color: var(--trust-blue); margin-bottom: 10px; }
        .security-section h3 { font-size: 18px; margin-bottom: 10px; }
        .security-section p { font-size: 12px; color: var(--text-secondary); margin-bottom: 10px; }
        .age-limit { display: inline-block; padding: 5px 10px; border: 2px solid #ff1744; color: #ff1744; border-radius: 50%; font-weight: bold; font-size: 14px; margin-top: 10px; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #111; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--border-subtle); z-index: 1000; }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 11px; flex: 1; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 3px; }
        .nav-item:active { color: var(--primary); }

        footer { background: #050505; padding: 40px 15px 100px; border-top: 1px solid var(--border-subtle); text-align: center; }
        footer .contact-links { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; flex-wrap: wrap; }
        footer .contact-links a { color: var(--primary); font-size: 14px; text-decoration: underline; }
        footer .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: left; }
        footer .footer-grid a { display: block; font-size: 12px; color: var(--text-secondary); margin-bottom: 8px; }
        footer .copyright { font-size: 12px; color: var(--muted); border-top: 1px solid var(--border-subtle); padding-top: 20px; }

        @keyframes countUp { from { opacity: 0.8; } to { opacity: 1; } }
        .jackpot-amount { animation: countUp 0.5s infinite alternate; }

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