:root {
            --brand-primary: #D4AF37;
            --brand-secondary: #B8860B;
            --brand-accent: #FFD700;
            --bg-main: #0D0D0D;
            --bg-surface: #1A1A1A;
            --bg-elevated: #262626;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #808080;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-display: 'Archivo Black', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            background: var(--bg-surface);
            padding: 10px 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #333;
        }
        .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: normal; color: var(--brand-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
            text-decoration: none;
            transition: opacity 0.2s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background: var(--brand-primary); color: #000; }
        .banner { width: 100%; display: block; aspect-ratio: 2 / 1; object-fit: cover; cursor: pointer; }
        .jackpot-container {
            margin: 20px 15px;
            padding: 20px;
            background: linear-gradient(135deg, #1a1a1a, #000);
            border: 2px solid var(--brand-primary);
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
        }
        .jackpot-label { font-family: var(--font-display); color: var(--brand-accent); font-size: 18px; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount { font-family: var(--font-display); color: #FF0000; font-size: 32px; text-shadow: 0 0 10px rgba(255,0,0,0.5); }
        .intro-card { margin: 20px 15px; padding: 20px; background: var(--bg-surface); border-radius: 12px; border-left: 4px solid var(--brand-primary); }
        .intro-card h1 { font-family: var(--font-heading); font-size: 24px; color: var(--brand-primary); margin-bottom: 10px; }
        .intro-card p { color: var(--text-secondary); font-size: 14px; }
        .section-title { font-family: var(--font-heading); font-size: 20px; margin: 25px 15px 15px; color: var(--text-primary); border-left: 3px solid var(--brand-primary); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-elevated); border-radius: 12px; overflow: hidden; text-decoration: none; display: block; border: 1px solid #333; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.97); }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; color: var(--text-primary); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info p { font-size: 12px; color: var(--text-muted); }
        .payments-section { background: var(--bg-surface); margin: 25px 15px; padding: 20px; border-radius: 12px; text-align: center; }
        .payment-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; align-items: center; margin-top: 15px; opacity: 0.8; }
        .payment-icons i { font-size: 24px; color: var(--text-secondary); }
        .guidelines-section { padding: 0 15px; margin-bottom: 30px; }
        .guideline-item { background: var(--bg-surface); padding: 15px; border-radius: 8px; margin-bottom: 12px; border: 1px solid #222; }
        .guideline-item h2 { font-size: 18px; color: var(--brand-primary); margin-bottom: 8px; font-family: var(--font-heading); }
        .guideline-item p { font-size: 14px; color: var(--text-secondary); }
        .winners-marquee { background: #111; padding: 15px 0; margin: 25px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid #333; border-bottom: 1px solid #333; }
        .marquee-content { display: inline-block; animation: marquee 30s linear infinite; }
        .winner-tag { display: inline-flex; align-items: center; background: var(--bg-elevated); padding: 8px 15px; border-radius: 20px; margin-right: 15px; border: 1px solid #444; }
        .winner-tag i { color: var(--brand-accent); margin-right: 8px; }
        .winner-tag span { font-size: 13px; font-weight: 500; }
        .winner-tag b { color: var(--semantic-success, #00C853); margin-left: 8px; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; padding: 0 15px; margin-bottom: 30px; }
        .provider-chip { background: var(--bg-surface); padding: 6px 12px; border-radius: 4px; color: var(--text-secondary); font-size: 12px; border: 1px solid #333; }
        .review-card { background: var(--bg-surface); margin: 15px; padding: 20px; border-radius: 12px; border: 1px solid #333; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
        .review-header i { font-size: 32px; color: var(--brand-primary); }
        .stars { color: var(--brand-accent); font-size: 12px; margin-bottom: 8px; }
        .faq-section { padding: 0 15px; margin-bottom: 30px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; padding: 15px; border: 1px solid #222; }
        .faq-item h3 { font-size: 16px; color: var(--brand-primary); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section { text-align: center; padding: 30px 15px; background: #050505; border-top: 1px solid #222; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin: 15px 0; font-size: 24px; color: var(--text-muted); }
        .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 #333; z-index: 2000; box-shadow: 0 -5px 15px rgba(0,0,0,0.5); }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-secondary); flex: 1; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 4px; }
        .nav-item span { font-size: 11px; font-weight: 500; }
        footer { padding: 40px 15px 100px; background: #000; border-top: 1px solid #222; }
        .footer-contacts { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 25px; }
        .footer-contacts a { color: var(--brand-primary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; transition: color 0.2s; }
        .footer-links a:hover { color: var(--brand-primary); }
        .copyright { text-align: center; font-size: 12px; color: var(--text-muted); padding-top: 20px; border-top: 1px solid #222; }