:root {
            --primary-bg: #12141a;
            --card-bg: #1e222b;
            --accent-gold: #f3bc34;
            --text-light: #ffffff;
            --text-gray: #a0a0a0;
            --gradient-gold: linear-gradient(135deg, #f3bc34 0%, #d4a017 100%);
            --btn-blue: #2d68ff;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; }
        body { background-color: var(--primary-bg); color: var(--text-light); line-height: 1.6; }
        header { height: 60px; background-color: var(--card-bg); display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; 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; color: var(--text-light); }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 6px 16px; border-radius: 20px; text-decoration: none; font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: 0.3s; }
        .btn-login { background: transparent; color: var(--text-light); border: 1px solid var(--text-light); }
        .btn-register { background: var(--gradient-gold); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { margin: 15px; background: radial-gradient(circle, #2c3e50 0%, #000000 100%); border: 2px solid var(--accent-gold); border-radius: 15px; padding: 20px; text-align: center; }
        .jackpot-title { color: var(--accent-gold); text-transform: uppercase; font-size: 14px; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(243,188,52,0.8); }
        .section-title { margin: 20px 15px 10px; font-size: 18px; border-left: 4px solid var(--accent-gold); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; }
        .game-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; text-decoration: none; color: white; display: block; box-shadow: 0 4px 6px rgba(0,0,0,0.3); }
        .game-card img { width: 100%; display: block; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 8px; text-align: center; }
        .game-info h4 { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 400; }
        .intro-card { margin: 20px 15px; background: var(--card-bg); padding: 20px; 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); }
        .guidelines { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; }
        .guide-item { background: var(--card-bg); padding: 15px; border-radius: 12px; text-align: center; }
        .guide-item i { font-size: 24px; color: var(--accent-gold); margin-bottom: 8px; }
        .guide-item h3 { font-size: 14px; margin-bottom: 5px; }
        .winning-records { margin: 20px 15px; background: #0a0c10; border-radius: 15px; padding: 15px; height: 300px; overflow-y: hidden; position: relative; }
        .winning-list { animation: scrollList 40s linear infinite; }
        @keyframes scrollList { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .win-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #1e222b; font-size: 12px; }
        .win-user { color: var(--text-gray); }
        .win-amount { color: #4caf50; font-weight: bold; }
        .pro-elements { padding: 20px 15px; display: flex; justify-content: space-around; background: #000; margin-top: 20px; opacity: 0.7; }
        .pro-elements i { font-size: 30px; }
        .comments { padding: 0 15px; }
        .comment-card { background: var(--card-bg); padding: 15px; border-radius: 12px; margin-bottom: 10px; border-left: 3px solid var(--btn-blue); }
        .comment-user { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
        .comment-user span { font-weight: bold; font-size: 14px; }
        .comment-stars { color: var(--accent-gold); font-size: 12px; }
        .comment-text { font-size: 13px; color: var(--text-gray); }
        .faq-section { padding: 0 15px; margin-bottom: 80px; }
        .faq-item { margin-bottom: 15px; background: var(--card-bg); border-radius: 10px; padding: 15px; }
        .faq-item h3 { font-size: 15px; color: var(--accent-gold); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-gray); }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { text-decoration: none; color: var(--text-gray); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 4px; }
        .nav-item i { font-size: 18px; }
        .nav-item span { font-size: 11px; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #1e222b; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-links a { color: var(--text-gray); text-decoration: none; font-size: 13px; }
        .copyright { font-size: 12px; color: #555; }