:root {
            --bg-main: #0a0b0d;
            --bg-surface: #16181c;
            --bg-overlay: #1f2228;
            --primary: #d4af37;
            --primary-hover: #f1c40f;
            --secondary: #006341;
            --accent: #ff4d4d;
            --gold-gradient: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
            --text-primary: #ffffff;
            --text-secondary: #a0aec0;
            --win-color: #00ff88;
            --font-primary: 'Montserrat', sans-serif;
            --font-secondary: 'Roboto', sans-serif;
            --font-display: 'Oswald', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            height: 60px;
            background: var(--bg-surface);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #2d3748;
        }
        .header-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; color: inherit; }
        .header-logo img { width: 25px; height: 25px; object-fit: contain; }
        .header-logo strong { font-size: 16px; font-weight: 400; font-family: var(--font-display); }
        .header-auth { display: flex; gap: 10px; }
        .btn { border: none; padding: 8px 16px; border-radius: 6px; font-weight: 600; cursor: pointer; font-size: 14px; transition: 0.3s; font-family: var(--font-secondary); }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--gold-gradient); color: #000; }
        .banner-container { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: radial-gradient(circle, #1f2228 0%, #0a0b0d 100%);
            margin: 20px 15px;
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--primary);
            text-align: center;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { font-family: var(--font-display); color: var(--primary); font-size: 1.2rem; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin: 10px 0; }
        .platform-intro { padding: 20px 15px; text-align: center; }
        .platform-intro h1 { font-size: 1.5rem; color: var(--primary); margin-bottom: 15px; font-family: var(--font-display); }
        .platform-intro p { color: var(--text-secondary); font-size: 0.95rem; }
        .section-title { padding: 20px 15px 10px; font-family: var(--font-display); font-size: 1.3rem; border-left: 4px solid var(--primary); margin-left: 15px; margin-bottom: 15px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; margin-bottom: 30px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid #2d3748; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 0.85rem; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; }
        .game-info p { font-size: 0.75rem; color: var(--primary); font-weight: 500; }
        .trust-section { background: var(--bg-surface); padding: 30px 15px; margin: 20px 0; text-align: center; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 20px; opacity: 0.7; }
        .payment-icons i { font-size: 2rem; color: var(--text-secondary); }
        .guidelines { padding: 20px 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-card { background: var(--bg-overlay); padding: 20px; border-radius: 12px; border-left: 3px solid var(--secondary); }
        .guide-card h2 { font-size: 1.1rem; color: var(--primary); margin-bottom: 10px; }
        .guide-card p { font-size: 0.9rem; color: var(--text-secondary); }
        .win-marquee { background: #111; padding: 10px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid #333; border-bottom: 1px solid #333; }
        .marquee-content { display: inline-block; animation: marquee 40s linear infinite; }
        .win-item { display: inline-flex; align-items: center; margin-right: 30px; font-size: 0.85rem; }
        .win-item span { color: var(--win-color); margin: 0 5px; font-weight: bold; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { padding: 20px 15px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; font-weight: bold; color: var(--text-secondary); }
        .provider-tag { background: var(--bg-overlay); padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; border: 1px solid #333; }
        .reviews-section { padding: 20px 15px; }
        .review-card { background: var(--bg-surface); padding: 20px; border-radius: 15px; margin-bottom: 15px; border: 1px solid #2d3748; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 1.5rem; color: var(--primary); }
        .review-stars { color: #ffc107; font-size: 0.8rem; margin: 5px 0; }
        .faq-section { padding: 20px 15px; }
        .faq-item { background: var(--bg-overlay); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: var(--primary); display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 0.9rem; color: var(--text-secondary); }
        .security-footer { padding: 30px 15px; text-align: center; background: #050505; border-top: 2px solid var(--bg-surface); }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 1.5rem; color: var(--secondary); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #16181c; height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2d3748; z-index: 1000; padding-bottom: env(safe-area-inset-bottom); }
        .nav-item { text-decoration: none; color: var(--text-secondary); text-align: center; flex: 1; font-size: 0.7rem; }
        .nav-item i { display: block; font-size: 1.2rem; margin-bottom: 4px; }
        .nav-item.active, .nav-item:active { color: var(--primary); }
        footer { padding: 30px 15px 100px; background: #0a0b0d; color: var(--text-secondary); font-size: 0.85rem; }
        .footer-contacts { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 25px; }
        .footer-contacts a { color: var(--primary); text-decoration: none; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; text-align: center; margin-bottom: 25px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.8rem; }
        .footer-copy { text-align: center; padding-top: 20px; border-top: 1px solid #222; font-size: 0.75rem; }