:root {
            --primary: #D4AF37;
            --secondary: #8B0000;
            --accent: #FFD700;
            --premium-gold: linear-gradient(180deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
            --bg-main: #050505;
            --bg-surface: #121212;
            --bg-card: #1A1A1B;
            --text-main: #FFFFFF;
            --text-sec: #B0B0B0;
            --text-muted: #6E6E6E;
            --success: #28A745;
            --win: #00FF41;
            --border: #333333;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-main);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; }
        header {
            background-color: var(--bg-surface);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            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: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background-color: transparent; color: var(--text-main); border: 1px solid var(--border); }
        .btn-reg { background: var(--premium-gold); color: #000; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: radial-gradient(circle, #2a0000 0%, #050505 100%);
            padding: 20px 15px;
            text-align: center;
            border-bottom: 1px solid var(--secondary);
        }
        .jackpot-label { color: var(--accent); font-size: 14px; letter-spacing: 2px; text-transform: uppercase; }
        .jackpot-amount {
            font-family: 'Oswald', sans-serif;
            font-size: 2.5rem;
            color: var(--primary);
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
            margin: 5px 0;
        }
        .container { padding: 20px 15px; }
        .intro-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 25px;
        }
        .intro-card h1 { font-size: 1.5rem; color: var(--primary); margin-bottom: 10px; }
        .intro-card p { font-size: 0.95rem; color: var(--text-sec); }
        .section-title { font-size: 1.25rem; margin-bottom: 15px; border-left: 4px solid var(--primary); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 30px; }
        .game-card {
            background: var(--bg-card);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: transform 0.2s;
        }
        .game-card:active { transform: scale(0.98); }
        .game-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 0.875rem; color: var(--text-main); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            background: var(--bg-card);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 30px;
        }
        .payment-item { text-align: center; font-size: 10px; color: var(--text-sec); }
        .payment-item i { font-size: 24px; color: var(--primary); margin-bottom: 8px; display: block; }
        .guides-grid { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
        .guide-item { background: var(--bg-card); padding: 15px; border-radius: 10px; border-left: 3px solid var(--secondary); }
        .guide-item h3 { font-size: 1rem; color: var(--primary); margin-bottom: 8px; }
        .guide-item p { font-size: 0.875rem; color: var(--text-sec); text-align: justify; }
        .marquee-container {
            background: #0a0a0a;
            padding: 15px 0;
            overflow: hidden;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            margin-bottom: 30px;
        }
        .marquee-track { display: flex; animation: scroll 40s linear infinite; width: max-content; }
        .win-record {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0 25px;
            border-right: 1px solid var(--border);
        }
        .win-user { color: var(--accent); font-weight: 600; }
        .win-amount { color: var(--win); font-family: 'Oswald', sans-serif; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall {
            background: var(--bg-card);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            color: var(--text-sec);
            font-weight: 600;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
            font-size: 0.875rem;
        }
        .provider-name { color: var(--primary); border: 1px solid var(--border); padding: 5px 12px; border-radius: 4px; }
        .reviews-grid { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
        .review-card { background: var(--bg-card); padding: 20px; border-radius: 12px; border: 1px solid var(--border); }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
        .review-avatar { width: 40px; height: 40px; background: #333; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); }
        .review-meta h3 { font-size: 0.95rem; }
        .stars { color: var(--accent); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .review-content { font-size: 0.875rem; color: var(--text-sec); font-style: italic; }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: var(--bg-card); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; border-bottom: 1px solid var(--border); color: var(--primary); font-size: 0.95rem; }
        .faq-answer { padding: 15px; font-size: 0.875rem; color: var(--text-sec); }
        .security-section {
            background: linear-gradient(135deg, #1a1a1b 0%, #050505 100%);
            padding: 25px 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--secondary);
            margin-bottom: 30px;
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--success); }
        .security-text { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 10px; }
        .security-links a { color: var(--primary); font-size: 0.8rem; margin: 0 5px; text-decoration: underline; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #121212;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 2px solid var(--primary);
            z-index: 1001;
        }
        .nav-item { text-align: center; color: var(--text-sec); font-size: 10px; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item:active { color: var(--primary); }
        footer { background: var(--bg-surface); padding: 30px 15px 100px; border-top: 1px solid var(--border); }
        .footer-contacts { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-contacts a { font-size: 13px; color: var(--text-sec); border: 1px solid var(--border); padding: 5px 12px; border-radius: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 12px; color: var(--text-muted); }
        .copyright { text-align: center; font-size: 11px; color: var(--text-muted); border-top: 1px solid var(--hiwalay); pt: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .container { max-width: 800px; margin: 0 auto; }
        }