:root {
            --bg-dark: #1a1d24;
            --accent-gold: #FFD700;
            --text-light: #ffffff;
            --text-dim: #a0a0a0;
            --cta-gradient: linear-gradient(135deg, #FF6B35 0%, #FF2E63 100%);
            --card-bg: #252a34;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }
        header {
            background-color: rgba(26, 29, 36, 0.95);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
        }
        .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(--accent-gold); text-transform: uppercase; }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register {
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: transform 0.2s;
        }
        .btn-login { background: transparent; color: var(--accent-gold); border: 1px solid var(--accent-gold); }
        .btn-register { background: var(--cta-gradient); color: white; }
        .btn-login:active, .btn-register:active { transform: scale(0.95); }
        .banner { width: 100%; cursor: pointer; }
        .banner img { width: 100%; aspect-ratio: 2/1; object-fit: cover; }
        .jackpot-container {
            background: radial-gradient(circle, #2c3e50 0%, #000000 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 2px solid var(--accent-gold);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
        }
        .jackpot-title { color: var(--accent-gold); font-size: 18px; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px #FF6B35; font-family: monospace; }
        .intro-card { margin: 15px; padding: 20px; background: var(--card-bg); border-radius: 15px; border-left: 4px solid var(--accent-gold); }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; color: var(--accent-gold); }
        .intro-card p { font-size: 14px; color: var(--text-dim); }
        .section-title { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; font-size: 18px; border-left: 3px solid var(--accent-gold); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; display: block; position: relative; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform 0.3s; }
        .game-card:hover img { transform: scale(1.05); }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; }
        .game-provider { font-size: 11px; color: var(--accent-gold); font-weight: bold; }
        .payment-methods { padding: 20px 15px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; background: #121418; margin-top: 20px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; opacity: 0.8; }
        .payment-item i { font-size: 24px; color: var(--text-light); }
        .payment-item span { font-size: 10px; margin-top: 5px; color: var(--text-dim); }
        .guidelines { padding: 15px; }
        .guideline-item { background: var(--card-bg); padding: 15px; border-radius: 10px; margin-bottom: 15px; }
        .guideline-item h2 { font-size: 16px; margin-bottom: 8px; color: var(--accent-gold); }
        .guideline-item p { font-size: 13px; color: var(--text-dim); }
        .winners-marquee { background: #000; padding: 10px 0; overflow: hidden; margin: 20px 0; border-top: 1px solid var(--accent-gold); border-bottom: 1px solid var(--accent-gold); }
        .marquee-track { display: flex; animation: marquee 30s linear infinite; width: max-content; }
        .winner-pill { background: #222; margin: 0 10px; padding: 5px 15px; border-radius: 20px; display: flex; gap: 10px; align-items: center; white-space: nowrap; border: 1px solid #444; }
        .winner-pill strong { color: #4caf50; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { padding: 20px 15px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; background: #121418; }
        .provider-tag { background: #252a34; padding: 5px 12px; border-radius: 4px; font-size: 12px; color: var(--accent-gold); border: 1px solid #3d4451; }
        .reviews { padding: 15px; display: grid; grid-template-columns: 1fr; gap: 15px; }
        .review-card { background: var(--card-bg); padding: 15px; border-radius: 15px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--accent-gold); }
        .review-user-info h3 { font-size: 14px; margin: 0; }
        .review-stars { color: #f1c40f; font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-dim); margin-left: auto; }
        .review-content { font-size: 13px; color: var(--text-dim); font-style: italic; }
        .faq-section { padding: 15px; background: #121418; }
        .faq-item { margin-bottom: 20px; border-bottom: 1px solid #2d343f; padding-bottom: 15px; }
        .faq-item h2 { font-size: 16px; margin-bottom: 10px; color: var(--accent-gold); }
        .faq-item p { font-size: 13px; color: var(--text-dim); }
        .security-section { padding: 25px 15px; text-align: center; background: var(--bg-dark); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
        .security-icons i { font-size: 30px; color: var(--accent-gold); }
        .security-text { font-size: 12px; color: var(--text-dim); max-width: 400px; margin: 0 auto; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 60px; background: #121418; display: flex; justify-content: space-around; align-items: center; z-index: 1000; border-top: 1px solid #333; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: var(--text-dim); font-size: 11px; }
        .nav-item i { font-size: 20px; margin-bottom: 3px; }
        .nav-item.active { color: var(--accent-gold); }
        footer { padding: 30px 15px 100px; background: #0c0e12; color: var(--text-dim); }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .footer-social a { font-size: 14px; color: var(--accent-gold); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; text-align: center; }
        .footer-links a { font-size: 12px; color: var(--text-dim); }
        .copyright { text-align: center; font-size: 11px; padding-top: 20px; border-top: 1px solid #222; }