:root {
            --primary: #D4AF37;
            --primary-hover: #F1C40F;
            --secondary: #059669;
            --secondary-hover: #10B981;
            --accent: #FF4500;
            --bg-main: #0D0D0D;
            --bg-surface: #1A1A1A;
            --bg-elevated: #262626;
            --overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #737373;
            --border-default: #333333;
            --border-strong: #4D4D4D;
            --border-gold: #D4AF37;
            --font-headings: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
        }

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

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

        header { background: var(--bg-surface); border-bottom: 1px solid var(--border-default); position: sticky; top: 0; z-index: 1000; height: 60px; display: flex; align-items: center; }
        .header-wrap { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0 15px; }
        .logo-area { display: flex; align-items: center; gap: 10px; }
        .logo-area img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-area strong { font-size: 16px; font-weight: 400; font-family: var(--font-headings); letter-spacing: 1px; color: var(--primary); }
        .auth-btns { 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: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: #000; }
        .btn-register:hover { background: var(--primary-hover); }

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

        .jackpot-box { margin: 20px 15px; background: linear-gradient(135deg, #262626 0%, #000 100%); border: 2px solid var(--primary); border-radius: 12px; padding: 20px; text-align: center; position: relative; overflow: hidden; }
        .jackpot-label { color: var(--primary); font-family: var(--font-headings); font-weight: 900; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-family: var(--font-mono); font-size: 32px; font-weight: 700; color: #fff; text-shadow: 0 0 15px rgba(212, 175, 55, 0.6); }

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

        .section-title { margin: 25px 15px 15px; font-family: var(--font-headings); font-size: 18px; display: flex; align-items: center; gap: 10px; color: var(--primary); }
        .section-title::before { content: ''; width: 4px; height: 18px; background: var(--primary); border-radius: 2px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-surface); 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 { aspect-ratio: 1 / 1; overflow: hidden; background: #111; }
        .game-img img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; font-weight: 500; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .payments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 0 15px; margin-bottom: 25px; }
        .payment-item { background: var(--bg-surface); padding: 15px 5px; border-radius: 8px; text-align: center; border: 1px solid var(--border-default); }
        .payment-item i { font-size: 20px; color: var(--primary); margin-bottom: 8px; }
        .payment-item span { display: block; font-size: 10px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; }

        .guidelines { padding: 0 15px; margin-bottom: 30px; }
        .guide-item { background: var(--bg-elevated); padding: 20px; border-radius: 12px; margin-bottom: 15px; }
        .guide-item h2 { font-size: 18px; color: var(--primary); margin-bottom: 10px; font-family: var(--font-headings); }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }

        .marquee-container { background: var(--bg-surface); border-top: 1px solid var(--primary); border-bottom: 1px solid var(--primary); padding: 10px 0; margin: 25px 0; overflow: hidden; }
        .marquee-content { display: flex; animation: scroll 40s linear infinite; gap: 30px; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-tag { display: flex; align-items: center; gap: 10px; white-space: nowrap; font-size: 13px; color: var(--text-secondary); background: rgba(255,255,255,0.05); padding: 5px 15px; border-radius: 20px; }
        .winner-tag b { color: var(--primary); }
        .winner-tag span { color: var(--secondary); font-weight: bold; }

        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; margin-bottom: 30px; }
        .provider-btn { background: var(--bg-surface); color: var(--primary); padding: 15px; border-radius: 8px; text-align: center; font-weight: 700; border: 1px solid var(--border-default); }

        .reviews { padding: 0 15px; margin-bottom: 30px; }
        .review-card { background: var(--bg-elevated); padding: 20px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; background: var(--bg-surface); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); border: 1px solid var(--primary); }
        .review-meta h3 { font-size: 15px; color: var(--text-primary); }
        .stars { color: #FFD700; font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); font-style: italic; }
        .review-date { font-size: 11px; color: var(--text-muted); margin-top: 10px; text-align: right; }

        .faq-section { padding: 0 15px; margin-bottom: 40px; }
        .faq-item { background: var(--bg-surface); border-radius: 10px; margin-bottom: 10px; overflow: hidden; border: 1px solid var(--border-default); }
        .faq-question { padding: 15px; font-weight: 600; font-size: 15px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--primary); }
        .faq-answer { padding: 0 15px 15px; color: var(--text-secondary); font-size: 14px; }

        .security-box { margin: 0 15px 30px; padding: 25px; background: linear-gradient(to bottom, #1a1a1a, #0d0d0d); border-radius: 15px; border: 1px solid var(--border-default); text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; font-size: 24px; color: var(--secondary); }
        .security-box h2 { font-size: 18px; color: var(--text-primary); margin-bottom: 15px; }
        .security-box p { font-size: 13px; color: var(--text-muted); margin-bottom: 15px; }
        .responsible-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
        .responsible-links a { color: var(--primary); font-size: 12px; text-decoration: underline; }

        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--bg-surface); height: 65px; border-top: 1px solid var(--border-default); display: flex; justify-content: space-around; align-items: center; z-index: 1000; box-shadow: 0 -5px 15px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--text-muted); font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--primary); }

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

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