:root {
            --bg-color: #1a1d24;
            --card-bg: #252a34;
            --gold: #FFD700;
            --text-white: #ffffff;
            --text-gray: #a0a0a0;
            --gradient-cta: linear-gradient(135deg, #FF6B35 0%, #FF2E63 100%);
            --shadow: 0 4px 15px rgba(0,0,0,0.5);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-color);
            color: var(--text-white);
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        header {
            background: #121418;
            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; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: var(--gold); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            border: none;
            transition: transform 0.2s;
        }
        .btn-login { background: transparent; color: var(--text-white); border: 1px solid var(--text-white); }
        .btn-register { background: var(--gradient-cta); color: white; }
        .btn:active { transform: scale(0.95); }
        main { max-width: 1000px; margin: 0 auto; padding: 0; }
        .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, #2c3e50 0%, #000000 100%);
            padding: 20px;
            text-align: center;
            margin: 15px;
            border-radius: 15px;
            border: 2px solid var(--gold);
        }
        .jackpot-label { color: var(--gold); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: bold; color: #fff; text-shadow: 0 0 10px var(--gold); margin: 10px 0; }
        .intro-card { padding: 20px; margin: 15px; background: var(--card-bg); border-radius: 15px; border-left: 4px solid var(--gold); }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; color: var(--gold); }
        .intro-card p { font-size: 14px; color: var(--text-gray); }
        .section-title { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; border-left: 4px solid #FF2E63; margin-left: 15px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; padding: 0 15px; }
        .game-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; transition: transform 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info p { font-size: 12px; color: var(--text-gray); }
        .payment-methods { background: #121418; padding: 20px 15px; margin: 25px 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
        .payment-methods i { font-size: 30px; color: var(--text-gray); }
        .guidelines { padding: 15px; }
        .guideline-item { background: var(--card-bg); padding: 15px; border-radius: 12px; margin-bottom: 15px; }
        .guideline-item h2 { font-size: 18px; color: var(--gold); margin-bottom: 10px; }
        .winners-marquee { background: #121418; padding: 10px 0; margin: 20px 0; overflow: hidden; white-space: nowrap; }
        .marquee-content { display: inline-block; animation: marquee 30s linear infinite; }
        .winner-tag { display: inline-block; padding: 5px 15px; background: #252a34; border-radius: 20px; margin-right: 15px; font-size: 12px; border: 1px solid #444; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { padding: 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; background: rgba(255,215,0,0.05); }
        .provider-name { color: var(--gold); font-weight: bold; font-size: 14px; opacity: 0.8; }
        .reviews-container { padding: 15px; display: grid; grid-template-columns: 1fr; gap: 15px; }
        .review-card { background: var(--card-bg); padding: 20px; border-radius: 15px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--gold); }
        .review-stars { color: var(--gold); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-gray); float: right; }
        .faq-section { padding: 20px 15px; }
        .faq-item { margin-bottom: 15px; background: var(--card-bg); border-radius: 10px; padding: 15px; }
        .faq-item h2 { font-size: 16px; margin-bottom: 8px; color: var(--gold); }
        .faq-item p { font-size: 14px; color: var(--text-gray); }
        .responsible-gaming { padding: 30px 15px; text-align: center; background: #121418; border-top: 1px solid #333; }
        .responsible-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--text-gray); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #121418; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { text-align: center; color: var(--text-gray); font-size: 11px; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 3px; }
        footer { padding: 40px 15px 100px; background: #0c0e11; color: var(--text-gray); font-size: 13px; }
        .footer-contact { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-contact a { color: var(--gold); font-weight: bold; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; text-align: center; margin-bottom: 30px; border-top: 1px solid #222; padding-top: 20px; }
        .copyright { text-align: center; border-top: 1px solid #222; padding-top: 20px; color: #666; }