:root {
            --primary-bg: #1a1d24;
            --card-bg: #252a34;
            --accent-gold: #FFD700;
            --text-white: #ffffff;
            --text-gray: #b1b1b1;
            --cta-gradient: linear-gradient(135deg, #FF6B35 0%, #FF2E63 100%);
            --gold-gradient: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-white);
            line-height: 1.6;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        header {
            background-color: #0f1218;
            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; }
        .header-left strong { font-size: 16px; font-weight: normal; color: var(--accent-gold); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .btn-login { background-color: transparent; border: 1px solid var(--accent-gold); color: var(--accent-gold); }
        .btn-register { background: var(--cta-gradient); color: white; }
        .btn:active { transform: scale(0.95); }
        .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: #000;
            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: 14px; text-transform: uppercase; margin-bottom: 10px; font-weight: bold; }
        .jackpot-amount { font-size: 32px; font-weight: 800; background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-family: 'Courier New', monospace; }
        .intro-card { margin: 20px 15px; padding: 20px; background: var(--card-bg); border-radius: 15px; }
        .intro-card h1 { font-size: 20px; color: var(--accent-gold); margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: var(--text-gray); }
        .section-title { padding: 0 15px; margin: 20px 0 10px; font-size: 18px; display: flex; align-items: center; gap: 10px; border-left: 4px solid var(--accent-gold); }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 15px; }
        .game-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; position: relative; border: 1px solid rgba(255,255,255,0.05); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: var(--text-gray); }
        .payments-section { background: #0f1218; padding: 25px 15px; margin: 20px 0; text-align: center; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; opacity: 0.8; }
        .payment-icons i { font-size: 24px; color: var(--text-gray); }
        .guidelines { padding: 15px; display: grid; gap: 15px; }
        .guideline-item { background: var(--card-bg); padding: 15px; border-radius: 12px; border-left: 2px solid var(--accent-gold); }
        .guideline-item h3 { font-size: 16px; margin-bottom: 8px; color: var(--accent-gold); }
        .guideline-item p { font-size: 13px; color: var(--text-gray); }
        .marquee-container { background: #000; padding: 10px 0; margin: 20px 0; overflow: hidden; white-space: nowrap; }
        .marquee-content { display: inline-block; animation: marquee 40s linear infinite; }
        .winner-tag { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.05); padding: 5px 15px; margin: 0 10px; border-radius: 20px; font-size: 12px; }
        .winner-tag span { color: var(--accent-gold); font-weight: bold; }
        @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: rgba(0,0,0,0.2); }
        .provider-badge { padding: 5px 12px; background: var(--card-bg); border-radius: 4px; font-size: 12px; color: var(--accent-gold); border: 1px solid rgba(255,215,0,0.2); }
        .comments-section { padding: 15px; display: grid; gap: 15px; }
        .comment-card { background: var(--card-bg); padding: 15px; border-radius: 12px; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 20px; color: var(--text-gray); }
        .comment-name { font-weight: bold; font-size: 14px; flex-grow: 1; }
        .comment-stars { color: var(--accent-gold); font-size: 12px; }
        .comment-date { font-size: 11px; color: var(--text-gray); display: block; margin-bottom: 5px; }
        .comment-content { font-size: 13px; color: var(--text-gray); font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { margin-bottom: 15px; background: var(--card-bg); border-radius: 12px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,0.05); color: var(--accent-gold); }
        .faq-answer { padding: 15px; font-size: 13px; color: var(--text-gray); }
        .security-section { padding: 20px 15px; background: #0f1218; text-align: center; }
        .security-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 15px; }
        .security-item { font-size: 11px; color: var(--text-gray); }
        .security-item i { font-size: 20px; color: var(--accent-gold); margin-bottom: 5px; display: block; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: #0f1218;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid rgba(255,215,0,0.2);
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: var(--text-gray); }
        .nav-item i { font-size: 20px; margin-bottom: 3px; }
        .nav-item:active { color: var(--accent-gold); }
        footer { padding: 30px 15px 80px; background: #090b0e; border-top: 1px solid rgba(255,255,255,0.05); }
        .footer-contact { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 25px; }
        .footer-contact a { color: var(--accent-gold); font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; text-align: center; }
        .footer-links a { color: var(--text-gray); font-size: 13px; }
        .copyright { text-align: center; font-size: 11px; color: #555; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; }