:root {
            --primary-bg: #1a1d24;
            --card-bg: #252932;
            --accent-gold: #ffcc00;
            --text-main: #ffffff;
            --text-muted: #a0a0a0;
            --btn-grad: linear-gradient(180deg, #ffde59 0%, #ff9100 100%);
            --secondary-grad: linear-gradient(180deg, #3a3f4b 0%, #1a1d24 100%);
            --radius: 12px;
        }
        * { 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-main); line-height: 1.6; overflow-x: hidden; padding-bottom: 70px; }
        header { background: rgba(26, 29, 36, 0.95); position: sticky; top: 0; z-index: 1000; padding: 10px 15px; border-bottom: 1px solid #333; display: flex; align-items: center; justify-content: space-between; }
        .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-main); }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-weight: bold; border: none; font-size: 14px; cursor: pointer; text-decoration: none; }
        .btn-login { background: transparent; color: var(--accent-gold); border: 1px solid var(--accent-gold); }
        .btn-register { background: var(--btn-grad); color: #000; }
        main { max-width: 600px; margin: 0 auto; padding: 10px; }
        .banner { width: 100%; aspect-ratio: 2/1; border-radius: var(--radius); overflow: hidden; margin-bottom: 15px; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: radial-gradient(circle, #4a0000 0%, #1a1d24 100%); border: 2px solid var(--accent-gold); border-radius: var(--radius); padding: 20px; text-align: center; margin-bottom: 20px; position: relative; overflow: hidden; }
        .jackpot-title { font-size: 18px; color: var(--accent-gold); text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(255,204,0,0.8); margin: 5px 0; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
        .game-card { background: var(--card-bg); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: white; transition: transform 0.2s; border: 1px solid #333; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
        .intro-card { background: var(--secondary-grad); border-radius: var(--radius); padding: 20px; border: 1px solid #333; margin-bottom: 20px; }
        .intro-card h1 { font-size: 18px; margin-bottom: 10px; color: var(--accent-gold); line-height: 1.3; }
        .intro-card p { font-size: 14px; color: var(--text-muted); text-align: justify; }
        .section-title { font-size: 18px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
        .section-title i { color: var(--accent-gold); }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 20px; }
        .guide-item { background: var(--card-bg); padding: 15px; border-radius: var(--radius); border-left: 4px solid var(--accent-gold); }
        .guide-item h3 { font-size: 15px; margin-bottom: 5px; color: var(--accent-gold); }
        .guide-item p { font-size: 13px; color: var(--text-muted); }
        .win-ticker { background: var(--card-bg); border-radius: var(--radius); padding: 15px; margin-bottom: 20px; height: 200px; overflow-y: auto; border: 1px solid #333; }
        .win-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #333; font-size: 13px; }
        .win-name { color: var(--text-main); }
        .win-amount { color: #4caf50; font-weight: bold; }
        .pro-elements { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; text-align: center; }
        .pro-box { background: var(--card-bg); padding: 10px; border-radius: var(--radius); }
        .pro-box i { font-size: 24px; color: var(--accent-gold); margin-bottom: 5px; }
        .pro-box span { display: block; font-size: 11px; text-transform: uppercase; font-weight: bold; }
        .comment-section { margin-bottom: 20px; }
        .comment-card { background: var(--card-bg); padding: 15px; border-radius: var(--radius); margin-bottom: 10px; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-header i { font-size: 20px; color: var(--text-muted); }
        .comment-author { font-size: 14px; font-weight: bold; }
        .comment-rating { color: var(--accent-gold); font-size: 12px; }
        .comment-text { font-size: 13px; color: var(--text-muted); font-style: italic; }
        .faq-section { margin-bottom: 20px; }
        .faq-item { background: var(--card-bg); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; cursor: pointer; font-weight: bold; color: var(--accent-gold); font-size: 14px; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: var(--text-muted); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; border-top: 1px solid #333; display: flex; justify-content: space-around; padding: 10px 0; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { text-decoration: none; color: var(--text-muted); display: flex; flex-direction: column; align-items: center; font-size: 11px; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--accent-gold); }
        footer { background: #111; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #333; }
        .footer-row { margin-bottom: 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .footer-row a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .footer-row a:hover { color: var(--accent-gold); }
        .footer-contact h4 { margin-bottom: 10px; color: var(--text-main); font-size: 16px; }
        .copyright { font-size: 12px; color: #666; margin-top: 10px; }