* { margin: 0; padding: 0; box-sizing: border-box; }
        body { background-color: #0f1217; color: #ffffff; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; line-height: 1.5; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        header { height: 60px; background: #1a1d24; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323e; }
        .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: #e9b109; }
        .header-right { display: flex; gap: 10px; }
        .btn-login { padding: 6px 15px; background: transparent; border: 1px solid #e9b109; color: #e9b109; border-radius: 20px; font-size: 14px; cursor: pointer; }
        .btn-register { padding: 6px 15px; background: linear-gradient(135deg, #e9b109, #ff9800); border: none; color: #000; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #1a1d24; padding: 10px 15px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #2d323e; }
        .announcement i { color: #e9b109; }
        .marquee-box { overflow: hidden; flex: 1; }
        .marquee-text { white-space: nowrap; display: inline-block; animation: marquee 20s linear infinite; font-size: 14px; color: #ccc; }
        @keyframes marquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .section-title { padding: 20px 15px 10px; font-size: 18px; color: #e9b109; display: flex; align-items: center; gap: 8px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px 20px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323e; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card p { padding: 8px; text-align: center; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #eee; }
        .intro-section { padding: 30px 15px; background: #161a20; border-top: 1px solid #2d323e; border-bottom: 1px solid #2d323e; margin-bottom: 20px; }
        .intro-section h1 { font-size: 22px; margin-bottom: 15px; color: #e9b109; text-align: center; }
        .intro-section p { font-size: 14px; color: #aaa; text-align: justify; margin-bottom: 15px; }
        .winning-records { background: #1a1d24; margin: 0 15px 20px; border-radius: 12px; padding: 15px; height: 300px; overflow: hidden; position: relative; border: 1px solid #2d323e; }
        .winning-list { animation: scrollList 40s linear infinite; }
        .winning-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2d323e; font-size: 13px; }
        .winning-user { color: #eee; }
        .winning-amount { color: #4caf50; font-weight: bold; }
        @keyframes scrollList { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .stats-box { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0 15px 20px; }
        .stat-item { background: #1a1d24; padding: 15px 5px; border-radius: 12px; text-align: center; border: 1px solid #2d323e; }
        .stat-item i { font-size: 20px; color: #e9b109; margin-bottom: 5px; display: block; }
        .stat-item span { font-size: 12px; color: #888; }
        .stat-item strong { display: block; font-size: 14px; color: #fff; }
        .reviews-section { padding: 20px 15px; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 4px solid #e9b109; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .review-user { font-weight: bold; font-size: 14px; }
        .review-stars { color: #e9b109; font-size: 12px; }
        .review-content { font-size: 13px; color: #bbb; font-style: italic; }
        .faq-section { padding: 20px 15px; }
        .faq-item { background: #1a1d24; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; font-size: 14px; color: #e9b109; cursor: pointer; border-bottom: 1px solid #2d323e; }
        .faq-answer { padding: 15px; font-size: 13px; color: #aaa; }
        .navigater { 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 #2d323e; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 12px; color: #888; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item:active { color: #e9b109; }
        footer { background: #0a0c10; padding: 30px 15px 20px; border-top: 1px solid #2d323e; text-align: center; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-links a { color: #888; font-size: 13px; }
        .footer-socials { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; font-size: 18px; color: #e9b109; }
        .copyright { font-size: 12px; color: #555; border-top: 1px solid #1a1d24; padding-top: 15px; }