* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1115; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        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; border-bottom: 1px solid #2d323d; }
        .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: #ffd700; }
        .header-right { display: flex; gap: 10px; }
        .btn-login { background: transparent; border: 1px solid #ffd700; color: #ffd700; padding: 5px 15px; border-radius: 20px; font-size: 14px; cursor: pointer; }
        .btn-register { background: linear-gradient(135deg, #ffd700, #ffae00); border: none; color: #000; padding: 5px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; }
        .banner { width: 100%; aspect-ratio: 2/1; display: block; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #1e222b; padding: 10px 15px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #2d323d; }
        .announcement i { color: #ffd700; }
        .scrolling-text { white-space: nowrap; overflow: hidden; position: relative; flex: 1; height: 24px; }
        .scrolling-text p { position: absolute; width: 100%; height: 100%; margin: 0; line-height: 24px; text-align: left; transform: translateX(100%); animation: scroll-left 15s linear infinite; font-size: 13px; color: #ccc; }
        @keyframes scroll-left { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .section-container { padding: 20px 15px; }
        .section-title { font-size: 18px; margin-bottom: 15px; border-left: 4px solid #ffd700; padding-left: 10px; display: flex; align-items: center; justify-content: space-between; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323d; 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-info { padding: 8px; text-align: center; }
        .game-info h3 { font-size: 13px; font-weight: normal; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #eee; }
        .platform-intro { background: #1a1d24; border-radius: 15px; padding: 20px; margin: 20px 0; border: 1px solid #2d323d; }
        .platform-intro h1 { font-size: 20px; color: #ffd700; margin-bottom: 12px; text-align: center; }
        .platform-intro p { font-size: 14px; color: #aaa; text-align: justify; }
        .winner-list { background: #1a1d24; border-radius: 12px; padding: 15px; max-height: 300px; overflow-y: auto; border: 1px solid #2d323d; }
        .winner-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #2d323d; font-size: 13px; }
        .winner-item:last-child { border-bottom: none; }
        .winner-name { color: #ccc; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .reviews-container { display: flex; flex-direction: column; gap: 15px; margin-top: 15px; }
        .review-card { background: #1e222b; padding: 15px; border-radius: 12px; border-left: 3px solid #ffd700; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .review-name { font-weight: bold; font-size: 14px; color: #ffd700; }
        .review-stars { color: #ffd700; font-size: 12px; }
        .review-text { font-size: 13px; color: #bbb; font-style: italic; }
        .faq-container { margin-top: 15px; }
        .faq-item { background: #1a1d24; border-radius: 8px; padding: 15px; margin-bottom: 10px; border: 1px solid #2d323d; }
        .faq-question { font-size: 15px; font-weight: bold; color: #eee; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
        .faq-answer { font-size: 14px; color: #aaa; }
        .navigater { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323d; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #888; font-size: 11px; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #ffd700; }
        footer { background: #0a0c10; padding: 30px 15px; text-align: center; border-top: 1px solid #2d323d; }
        .footer-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 15px; font-size: 13px; }
        .footer-link { color: #aaa; }
        .footer-link:hover { color: #ffd700; }
        .copyright { font-size: 12px; color: #666; margin-top: 10px; }
        .trust-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; opacity: 0.6; }
        .trust-badges i { font-size: 24px; }