:root {
            --primary: #D4AF37;
            --primary-hover: #F9E076;
            --secondary: #1A1A1A;
            --accent: #FFD700;
            --bg-main: #0B0C0E;
            --bg-surface: #16181D;
            --bg-elevated: #22252C;
            --text-primary: #FFFFFF;
            --text-secondary: #A1A1AA;
            --border: #2D3139;
            --success: #22C55E;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        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 var(--border);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border); }
        .btn-register { background: var(--primary); color: var(--secondary); }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
        .jackpot-section {
            background: linear-gradient(135deg, var(--bg-elevated), var(--bg-surface));
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary);
        }
        .jackpot-label { color: var(--primary); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: var(--accent); margin-top: 5px; }
        .intro-card { margin: 15px; padding: 20px; background: var(--bg-surface); border-radius: 12px; border: 1px solid var(--border); }
        .intro-card h1 { font-size: 20px; color: var(--primary); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); }
        .section-title { padding: 0 15px; margin: 20px 0 10px; font-size: 18px; display: flex; align-items: center; gap: 8px; }
        .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: 10px; overflow: hidden; border: 1px solid var(--border); transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 12px; color: var(--text-secondary); }
        .payment-methods { margin: 15px; padding: 20px; background: var(--bg-surface); border-radius: 12px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; align-items: center; }
        .payment-methods i { font-size: 24px; text-align: center; color: var(--text-secondary); }
        .guidelines { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 10px; }
        .guide-item h2 { font-size: 16px; margin-bottom: 8px; color: var(--primary); }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }
        .winners-marquee { background: var(--bg-surface); margin: 15px 0; padding: 10px 0; overflow: hidden; }
        .winners-track { display: flex; gap: 20px; animation: scroll 40s linear infinite; width: max-content; }
        .winner-pill { background: var(--bg-elevated); padding: 8px 15px; border-radius: 20px; font-size: 12px; display: flex; gap: 10px; border: 1px solid var(--border); }
        .winner-pill .win-amount { color: var(--success); font-weight: bold; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { margin: 15px; padding: 15px; background: var(--bg-surface); border-radius: 12px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .provider-tag { background: var(--bg-elevated); padding: 6px 12px; border-radius: 4px; font-size: 12px; color: var(--text-secondary); border: 1px solid var(--border); }
        .reviews { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border); }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
        .review-user { display: flex; align-items: center; gap: 8px; font-weight: 600; }
        .review-stars { color: var(--accent); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: var(--primary); }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); }
        .security-section { margin: 15px; padding: 20px; background: var(--bg-surface); border-radius: 12px; text-align: center; border: 1px solid var(--border); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin: 15px 0; font-size: 24px; color: var(--primary); }
        .security-text { font-size: 12px; color: var(--text-muted); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: var(--bg-surface); display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border); z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); font-size: 11px; }
        .nav-item i { font-size: 18px; }
        footer { padding: 30px 15px; background: var(--bg-main); border-top: 1px solid var(--border); text-align: center; }
        .footer-contacts { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; flex-wrap: wrap; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .copyright { font-size: 12px; color: var(--text-muted); }