:root {
            --bg-dark: #1a1d24;
            --bg-card: #252a34;
            --accent-gold: #FFD700;
            --text-light: #ffffff;
            --text-muted: #a0a0a0;
            --cta-grad: linear-gradient(135deg, #FF6B35, #FF2E63);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        
        header {
            background-color: rgba(26, 29, 36, 0.95);
            padding: 12px 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
        .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; letter-spacing: 0.5px; }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: transform 0.2s;
        }
        .btn-login { background-color: transparent; border: 1px solid var(--accent-gold); color: var(--accent-gold); }
        .btn-register { background: var(--cta-grad); color: white; }
        .btn:active { transform: scale(0.95); }

        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            background: radial-gradient(circle, #2a2f3a 0%, #1a1d24 100%);
            margin: 20px 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(255, 215, 0, 0.3);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
        }
        .jackpot-title { color: var(--accent-gold); font-size: 14px; text-transform: uppercase; font-weight: bold; margin-bottom: 5px; }
        .jackpot-amount { font-size: 28px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(255,255,255,0.5); font-family: monospace; }

        .intro-card { margin: 20px 15px; text-align: center; }
        .intro-card h1 { font-size: 22px; color: var(--accent-gold); margin-bottom: 12px; }
        .intro-card p { color: var(--text-muted); font-size: 14px; }

        .section-title { margin: 25px 15px 15px; font-size: 18px; border-left: 4px 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(--bg-card); border-radius: 12px; overflow: hidden; transition: transform 0.2s; }
        .game-card img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
        .game-info { padding: 8px; }
        .game-info h3 { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 11px; color: var(--text-muted); }

        .payments-section { background: var(--bg-card); margin: 25px 0; padding: 20px 15px; text-align: center; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; opacity: 0.8; }
        .payment-icons i { font-size: 30px; color: var(--text-muted); }

        .guidelines { padding: 0 15px; margin: 25px 0; }
        .guideline-item { background: var(--bg-card); padding: 15px; border-radius: 10px; margin-bottom: 15px; }
        .guideline-item h3 { color: var(--accent-gold); font-size: 16px; margin-bottom: 8px; }
        .guideline-item p { font-size: 13px; color: var(--text-muted); }

        .marquee-container { background: #000; padding: 10px 0; margin: 25px 0; overflow: hidden; white-space: nowrap; }
        .marquee-content { display: inline-block; animation: marquee 30s linear infinite; }
        .winner-tag { display: inline-block; margin-right: 30px; font-size: 12px; }
        .winner-tag span { color: var(--accent-gold); font-weight: bold; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers { padding: 20px 15px; text-align: center; background: rgba(255,255,255,0.03); }
        .provider-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; font-size: 14px; color: var(--text-muted); font-weight: bold; }

        .comments { padding: 0 15px; margin: 25px 0; }
        .comment-card { background: var(--bg-card); padding: 15px; border-radius: 12px; margin-bottom: 15px; border-top: 2px solid var(--accent-gold); }
        .comment-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
        .user-meta { display: flex; align-items: center; gap: 8px; }
        .stars { color: var(--accent-gold); font-size: 12px; }
        .comment-date { font-size: 11px; color: var(--text-muted); }
        .comment-text { font-size: 13px; font-style: italic; color: #ddd; }

        .faq { padding: 0 15px; margin: 25px 0; }
        .faq-item { margin-bottom: 15px; }
        .faq-item h3 { font-size: 15px; color: var(--accent-gold); margin-bottom: 5px; }
        .faq-item p { font-size: 13px; color: var(--text-muted); border-bottom: 1px solid #333; padding-bottom: 10px; }

        .security-section { text-align: center; padding: 25px 15px; background: #111; border-top: 1px solid #333; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--accent-gold); }
        .security-text { font-size: 12px; color: var(--text-muted); }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #111;
            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-muted); flex: 1; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 3px; }
        .nav-item span { font-size: 10px; }

        footer { padding: 30px 15px 100px; background: #0d0f13; border-top: 2px solid #222; }
        .footer-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-contact a { font-size: 13px; color: var(--accent-gold); }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 25px; text-align: center; }
        .footer-links a { font-size: 12px; color: var(--text-muted); }
        .footer-copy { text-align: center; font-size: 11px; color: #555; }