:root {
            --bg-primary: #0a0a0b;
            --bg-secondary: #141517;
            --bg-tertiary: #1c1d21;
            --bg-surface: #25262b;
            --brand-primary: #d4af37;
            --brand-light: #f1c40f;
            --brand-dark: #996515;
            --brand-secondary: #e31c25;
            --brand-accent: #ffd700;
            --text-primary: #ffffff;
            --text-secondary: #a1a1aa;
            --text-muted: #71717a;
            --text-on-brand: #000000;
            --semantic-success: #10b981;
            --semantic-error: #ef4444;
            --semantic-warning: #f59e0b;
            --semantic-info: #3b82f6;
            --semantic-safe: #22c55e;
            --border-default: #2d2e32;
            --border-subtle: #1f2023;
            --border-active: #d4af37;
            --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-heading: 'Montserrat', 'Inter', sans-serif;
        }

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

        header { background: var(--bg-secondary); border-bottom: 1px solid var(--border-default); padding: 10px 15px; position: sticky; top: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; height: 60px; }
        .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: 500; font-family: var(--font-heading); color: var(--brand-primary); }
        .header-right { display: flex; gap: 8px; }
        .btn { padding: 8px 16px; border-radius: 6px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background: var(--bg-surface); color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--brand-primary); color: var(--text-on-brand); }
        .btn:active { transform: scale(0.95); }

        main { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        .banner { width: 100%; aspect-ratio: 2/1; margin: 15px 0; border-radius: 12px; overflow: hidden; cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container { background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%); border: 1px solid var(--brand-dark); border-radius: 12px; padding: 20px; text-align: center; margin: 20px 0; position: relative; overflow: hidden; }
        .jackpot-label { color: var(--brand-light); font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 14px; margin-bottom: 10px; }
        .jackpot-amount { font-family: 'Montserrat', sans-serif; font-size: 2.5rem; font-weight: 900; color: var(--brand-accent); text-shadow: 0 0 15px rgba(212, 175, 55, 0.4); }

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

        section { margin: 30px 0; }
        h2 { font-family: var(--font-heading); font-size: 1.25rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
        h2::before { content: ''; width: 4px; height: 18px; background: var(--brand-secondary); border-radius: 2px; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
        .game-card { background: var(--bg-secondary); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-subtle); transition: transform 0.2s; position: relative; }
        .game-card:hover { transform: translateY(-5px); border-color: var(--brand-primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 0.9rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text-primary); }
        .game-provider { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }

        .payments-section { background: var(--bg-tertiary); padding: 20px; border-radius: 12px; text-align: center; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 15px; opacity: 0.8; }
        .payment-icons i { font-size: 2rem; color: var(--text-secondary); }

        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guideline-item { background: var(--bg-secondary); padding: 20px; border-radius: 10px; border: 1px solid var(--border-default); }
        .guideline-item h3 { font-size: 1.1rem; color: var(--brand-primary); margin-bottom: 10px; }
        .guideline-item p { color: var(--text-secondary); font-size: 0.875rem; }

        .winning-marquee { background: var(--bg-surface); padding: 10px 0; border-radius: 8px; margin: 20px 0; overflow: hidden; white-space: nowrap; }
        .marquee-content { display: inline-block; animation: marquee 30s linear infinite; }
        .winning-item { display: inline-flex; align-items: center; gap: 10px; margin-right: 40px; font-size: 0.85rem; }
        .winner-name { color: var(--brand-light); font-weight: 600; }
        .winner-amount { color: var(--semantic-success); font-weight: 700; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

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

        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .review-card { background: var(--bg-secondary); padding: 20px; border-radius: 12px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
        .user-icon { width: 40px; height: 40px; background: var(--bg-surface); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--brand-primary); font-size: 1.2rem; }
        .review-user-info h3 { font-size: 0.95rem; }
        .review-date { font-size: 0.75rem; color: var(--text-muted); }
        .stars { color: var(--brand-accent); font-size: 0.8rem; margin: 5px 0; }
        .review-content { font-size: 0.875rem; color: var(--text-secondary); }

        .faq-section { background: var(--bg-secondary); border-radius: 12px; padding: 10px; }
        .faq-item { border-bottom: 1px solid var(--border-subtle); padding: 15px; }
        .faq-item:last-child { border-bottom: none; }
        .faq-item h3 { font-size: 1rem; color: var(--brand-primary); margin-bottom: 10px; }
        .faq-item p { font-size: 0.875rem; color: var(--text-secondary); }

        .security-section { background: #000; border: 1px solid var(--border-default); padding: 25px; border-radius: 12px; text-align: center; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 1.5rem; color: var(--semantic-safe); }
        .security-section p { font-size: 0.8rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

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

        footer { background: var(--bg-primary); padding: 40px 20px 100px; border-top: 1px solid var(--border-default); }
        .footer-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-contacts a { color: var(--brand-primary); font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 30px; }
        .footer-links a { color: var(--text-secondary); font-size: 0.85rem; }
        .copyright { text-align: center; color: var(--text-muted); font-size: 0.75rem; border-top: 1px solid var(--border-subtle); padding-top: 20px; }

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