:root {
            --bg-color: #1a1d24;
            --card-bg: #252a34;
            --accent-gold: #FFD700;
            --text-white: #ffffff;
            --text-gray: #b1b1b1;
            --cta-gradient: linear-gradient(135deg, #FF6B35 0%, #FF2E63 100%);
            --border-radius: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg-color);
            color: var(--text-white);
            line-height: 1.6;
            padding-bottom: 70px;
        }
        header {
            background-color: #0f1216;
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #333;
        }
        .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: normal; color: var(--accent-gold); }
        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            border: none;
            font-weight: bold;
            cursor: pointer;
            font-size: 14px;
            transition: opacity 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-white); border: 1px solid var(--text-gray); }
        .btn-register { background: var(--cta-gradient); color: white; }
        .banner { width: 100%; aspect-ratio: 2 / 1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            margin: 20px 15px;
            background: radial-gradient(circle, #2c3e50 0%, #000000 100%);
            border: 2px solid var(--accent-gold);
            border-radius: var(--border-radius);
            padding: 20px;
            text-align: center;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
        }
        .jackpot-title { color: var(--accent-gold); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        #jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px var(--accent-gold); }
        .intro-card { margin: 20px 15px; padding: 20px; background: var(--card-bg); border-radius: var(--border-radius); text-align: center; }
        .intro-card h1 { font-size: 22px; margin-bottom: 10px; color: var(--accent-gold); }
        .intro-card p { font-size: 14px; color: var(--text-gray); }
        .section-title { padding: 15px 15px 5px; font-size: 18px; display: flex; align-items: center; gap: 8px; }
        .section-title i { color: var(--accent-gold); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: var(--card-bg); border-radius: var(--border-radius); overflow: hidden; text-decoration: none; color: inherit; display: block; border: 1px solid #333; }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
        .game-info { padding: 8px; }
        .game-info h3 { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 2px; }
        .game-provider { font-size: 11px; color: var(--text-gray); }
        .payment-methods { padding: 20px 15px; background: #0f1216; text-align: center; }
        .method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 15px; opacity: 0.8; }
        .method-item { background: #fff; padding: 5px; border-radius: 4px; display: flex; align-items: center; justify-content: center; height: 35px; color: #000; font-size: 10px; font-weight: bold; }
        .guidelines { padding: 20px 15px; display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guide-box { background: var(--card-bg); padding: 15px; border-radius: var(--border-radius); border-left: 4px solid var(--accent-gold); }
        .guide-box h2 { font-size: 16px; margin-bottom: 8px; color: var(--accent-gold); }
        .marquee-wrapper { background: #000; padding: 10px 0; overflow: hidden; border-top: 1px solid var(--accent-gold); border-bottom: 1px solid var(--accent-gold); }
        .marquee-content { display: flex; animation: marquee 30s linear infinite; }
        .win-tag { white-space: nowrap; padding: 0 20px; font-size: 12px; }
        .win-tag span { color: var(--accent-gold); font-weight: bold; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { padding: 20px 15px; text-align: center; font-size: 12px; color: var(--text-gray); display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
        .provider-name { padding: 5px 12px; border: 1px solid #444; border-radius: 15px; }
        .reviews-section { padding: 15px; }
        .review-card { background: var(--card-bg); border-radius: var(--border-radius); padding: 15px; margin-bottom: 12px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-gray); }
        .review-user { font-weight: bold; font-size: 14px; }
        .stars { color: var(--accent-gold); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-gray); margin-left: auto; }
        .review-body { font-size: 13px; color: #ddd; }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--card-bg); margin-bottom: 10px; border-radius: var(--border-radius); overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; cursor: pointer; color: var(--accent-gold); border-bottom: 1px solid #333; font-size: 14px; }
        .faq-answer { padding: 15px; font-size: 13px; color: var(--text-gray); }
        .security-section { padding: 25px 15px; text-align: center; background: #0f1216; font-size: 12px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; font-size: 24px; margin-bottom: 15px; color: var(--accent-gold); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #0f1216; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1001; }
        .nav-item { text-decoration: none; color: var(--text-gray); text-align: center; font-size: 11px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        footer { background: #0a0c10; padding: 30px 15px 90px; border-top: 2px solid var(--accent-gold); }
        .footer-contacts { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 25px; }
        .footer-contacts a { color: var(--text-white); text-decoration: none; font-size: 14px; border: 1px solid #333; padding: 5px 15px; border-radius: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 25px; }
        .footer-links a { color: var(--text-gray); text-decoration: none; font-size: 13px; }
        .copyright { text-align: center; font-size: 11px; color: #666; }