:root {
            --primary-bg: #12141a;
            --card-bg: #1e222b;
            --accent-gold: #f3c15c;
            --accent-blue: #3d8bff;
            --text-main: #ffffff;
            --text-dim: #a0a0a0;
            --btn-grad: linear-gradient(135deg, #f3c15c, #b8860b);
            --radius: 12px;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background: var(--primary-bg); color: var(--text-main); line-height: 1.5; -webkit-tap-highlight-color: transparent; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        header { background: #1a1d24; height: 60px; 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); }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: var(--accent-gold); }
        .header-btns { display: flex; gap: 8px; }
        .btn-login, .btn-reg { padding: 6px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; }
        .btn-login { background: transparent; color: var(--accent-gold); border: 1px solid var(--accent-gold); }
        .btn-reg { background: var(--btn-grad); color: #000; }
        main { padding: 15px; max-width: 800px; margin: 0 auto; padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2/1; border-radius: var(--radius); overflow: hidden; margin-bottom: 20px; cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box { background: radial-gradient(circle at center, #2c3440, #1a1d24); border: 1px solid #333; border-radius: var(--radius); padding: 20px; text-align: center; margin-bottom: 25px; }
        .jackpot-box h3 { font-size: 14px; color: var(--accent-gold); text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(243,193,92,0.5); }
        .section-title { font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; gap: 8px; }
        .section-title::before { content: ""; width: 4px; height: 18px; background: var(--accent-gold); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--card-bg); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.2); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h4 { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #ddd; }
        .intro-card { background: var(--card-bg); padding: 20px; border-radius: var(--radius); border-left: 4px solid var(--accent-gold); margin-bottom: 25px; }
        .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-dim); }
        .guidelines-box { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 25px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: var(--radius); display: flex; align-items: flex-start; gap: 12px; border: 1px solid #2a2e38; }
        .guide-item i { color: var(--accent-gold); font-size: 20px; margin-top: 3px; }
        .guide-item h3 { font-size: 15px; margin-bottom: 4px; color: #eee; }
        .guide-item p { font-size: 13px; color: var(--text-dim); }
        .winners-box { background: #1a1d24; border-radius: var(--radius); padding: 15px; height: 250px; overflow-y: auto; margin-bottom: 25px; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2a2e38; font-size: 13px; }
        .winner-row span:last-child { color: #4caf50; font-weight: 600; }
        .platform-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .feature-tag { background: rgba(61,139,255,0.1); color: var(--accent-blue); padding: 8px; border-radius: 8px; text-align: center; font-size: 11px; font-weight: 600; border: 1px solid rgba(61,139,255,0.3); }
        .comments-box { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 25px; }
        .comment-card { background: var(--card-bg); padding: 15px; border-radius: var(--radius); position: relative; }
        .user-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .user-avatar { width: 35px; height: 35px; background: #333; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent-gold); font-weight: bold; }
        .user-name { font-size: 14px; font-weight: 600; }
        .rating { color: var(--accent-gold); font-size: 10px; margin-top: 2px; }
        .comment-text { font-size: 13px; color: #bbb; font-style: italic; }
        .faq-section { margin-top: 30px; }
        .faq-item { background: #1a1d24; border-radius: var(--radius); margin-bottom: 10px; padding: 15px; border: 1px solid #2a2e38; }
        .faq-item h3 { font-size: 15px; color: var(--accent-gold); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: #1a1d24; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #333; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #888; font-size: 11px; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: var(--accent-gold); }
        footer { background: #0b0d11; padding: 30px 15px 100px; text-align: center; }
        .footer-row { margin-bottom: 20px; display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .footer-row a { color: var(--text-dim); font-size: 13px; }
        .copyright { font-size: 12px; color: #555; margin-top: 10px; }