:root {
            --bg-main: #0A0A0A;
            --bg-secondary: #141414;
            --bg-tertiary: #1E1E1E;
            --bg-surface: #252525;
            --primary: #FFD700;
            --primary-variant: #C5A000;
            --secondary: #D4AF37;
            --accent: #FF4D4D;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #707070;
            --border-default: #333333;
            --border-focused: #FFD700;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-mono: 'Roboto Mono', monospace;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { background-color: var(--bg-main); color: var(--text-primary); font-family: var(--font-body); line-height: 1.5; -webkit-font-smoothing: antialiased; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }

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

        header { background-color: var(--bg-secondary); border-bottom: 1px solid var(--border-default); position: sticky; top: 0; z-index: 1000; height: 60px; display: flex; align-items: center; }
        .header-content { display: flex; justify-content: space-between; align-items: center; width: 100%; }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-area strong { font-size: 16px; font-weight: 400; font-family: var(--font-heading); color: var(--primary); }
        .header-btns { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 6px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: #000; }

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

        .jackpot-section { background: linear-gradient(135deg, #1e1e1e 0%, #0a0a0a 100%); padding: 20px; text-align: center; margin: 15px 0; border-radius: 12px; border: 1px solid var(--secondary); }
        .jackpot-label { color: var(--secondary); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
        #jackpot-amount { font-family: var(--font-mono); font-size: 32px; font-weight: 900; color: var(--primary); text-shadow: 0 0 15px rgba(255, 215, 0, 0.4); }

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

        .section-title { font-family: var(--font-heading); font-size: 20px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; color: var(--primary); }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--bg-tertiary); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-default); transition: 0.3s; }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-img-wrapper { aspect-ratio: 1/1; overflow: hidden; position: relative; }
        .game-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .provider-name { color: var(--text-muted); font-size: 12px; }

        .payment-methods { background: var(--bg-secondary); padding: 20px; border-radius: 12px; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; align-items: center; border: 1px solid var(--border-default); }
        .payment-methods i { font-size: 30px; color: var(--text-secondary); }
        .trust-seal { height: 40px; filter: grayscale(1); opacity: 0.7; }

        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guide-item { background: var(--bg-surface); padding: 20px; border-radius: 10px; }
        .guide-item h2 { font-size: 18px; margin-bottom: 10px; color: var(--secondary); }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }

        .marquee-container { background: #000; padding: 10px 0; margin: 25px 0; overflow: hidden; border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); }
        .marquee-content { display: flex; gap: 30px; animation: scroll 40s linear infinite; white-space: nowrap; }
        .winner-item { font-size: 13px; color: var(--text-secondary); }
        .winner-item span { color: var(--primary); font-weight: 600; }

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

        .providers-text { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; padding: 20px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

        .review-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .review-card { background: var(--bg-tertiary); padding: 20px; border-radius: 12px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .user-avatar { width: 40px; height: 40px; background: var(--bg-surface); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 20px; }
        .user-meta h4 { font-size: 14px; }
        .stars { color: var(--primary); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-muted); margin-left: auto; }
        .review-body { font-size: 13px; color: var(--text-secondary); }

        .faq-section { margin: 30px 0; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 15px; color: var(--primary); margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: var(--text-secondary); }

        .security-section { background: var(--bg-secondary); padding: 25px; border-radius: 15px; text-align: center; border: 1px dashed var(--text-muted); margin-bottom: 30px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--text-muted); }
        .responsible-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; font-size: 12px; color: var(--primary); }

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

        footer { background: #050505; padding: 40px 16px 20px; text-align: center; }
        .footer-contact { margin-bottom: 30px; }
        .footer-contact a { margin: 0 10px; color: var(--primary); font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: var(--text-muted); transition: 0.3s; }
        .footer-links a:hover { color: var(--primary); }
        .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); }
            .guidelines-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(5, 1fr); }
        }