* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #121418; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background: #1a1d24; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #f3ba2f; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; border: none; cursor: pointer; transition: opacity 0.3s; }
        .btn-login { background: transparent; color: #f3ba2f; border: 1px solid #f3ba2f; }
        .btn-register { background: linear-gradient(180deg, #f3ba2f, #d49a00); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .container { padding: 15px; }
        .jackpot-section { background: linear-gradient(135deg, #2c1f11, #1a1d24); border: 2px solid #f3ba2f; border-radius: 12px; padding: 20px; text-align: center; margin-bottom: 20px; position: relative; overflow: hidden; }
        .jackpot-title { font-size: 18px; color: #f3ba2f; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-amount { font-size: 32px; font-weight: bold; color: #fff; text-shadow: 0 0 10px rgba(243, 186, 47, 0.5); font-family: monospace; }
        .section-title { font-size: 18px; margin-bottom: 15px; border-left: 4px solid #f3ba2f; padding-left: 10px; display: flex; justify-content: space-between; align-items: center; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1f2229; border-radius: 12px; overflow: hidden; border: 1px solid #333; 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: 8px; text-align: center; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; background: #1f2229; }
        .intro-card { background: #1f2229; padding: 20px; border-radius: 15px; margin-bottom: 25px; border: 1px solid #333; }
        .intro-card h1 { font-size: 20px; margin-bottom: 12px; color: #f3ba2f; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #ccc; }
        .guidelines { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 10px; border-top: 2px solid #f3ba2f; text-align: center; }
        .guide-item i { font-size: 24px; color: #f3ba2f; margin-bottom: 8px; }
        .guide-item h3 { font-size: 14px; margin-bottom: 5px; }
        .winning-records { background: #1a1d24; border-radius: 12px; padding: 15px; height: 200px; overflow: hidden; margin-bottom: 25px; border: 1px solid #333; }
        .record-list { animation: scrollList 30s linear infinite; }
        @keyframes scrollList { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .record-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2a2d35; font-size: 13px; }
        .record-name { color: #f3ba2f; }
        .record-win { color: #4caf50; font-weight: bold; }
        .pro-elements { display: flex; justify-content: space-around; background: #1f2229; padding: 15px; border-radius: 12px; margin-bottom: 25px; }
        .pro-item { text-align: center; font-size: 12px; color: #aaa; }
        .pro-item i { font-size: 20px; color: #f3ba2f; display: block; margin-bottom: 5px; }
        .comments { margin-bottom: 25px; }
        .comment-item { background: #1f2229; padding: 15px; border-radius: 12px; margin-bottom: 10px; border: 1px solid #333; }
        .comment-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .user-name { font-weight: bold; font-size: 14px; color: #f3ba2f; }
        .stars { color: #ffc107; font-size: 12px; }
        .comment-text { font-size: 13px; color: #ccc; font-style: italic; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: #1f2229; border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; font-size: 15px; cursor: pointer; border-bottom: 1px solid #333; color: #f3ba2f; display: flex; justify-content: space-between; }
        .faq-answer { padding: 15px; font-size: 14px; color: #bbb; line-height: 1.5; }
        .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-align: center; color: #8e8e93; font-size: 12px; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        .nav-item.active { color: #f3ba2f; }
        footer { background: #0a0b0d; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #333; }
        .footer-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 20px; }
        .footer-links a { color: #aaa; font-size: 13px; }
        .footer-bottom { color: #666; font-size: 12px; margin-top: 20px; }
        .tag-hot { background: #ff4d4f; color: #fff; font-size: 10px; padding: 2px 6px; border-radius: 4px; margin-left: 5px; vertical-align: middle; }