* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0d0f13; color: #e0e0e0; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background-color: #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; }
        .logo-area { display: flex; align-items: center; gap: 10px; }
        .logo-area img { width: 25px; height: 25px; object-fit: contain; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: #ffffff; }
        .auth-btns { display: flex; gap: 10px; }
        .btn-login, .btn-reg { padding: 6px 15px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; }
        .btn-login { background-color: transparent; color: #ffd700; border: 1px solid #ffd700; }
        .btn-reg { background: linear-gradient(135deg, #ffd700, #ff8c00); color: #000; }
        .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: 8px 15px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #2d323d; }
        .announcement i { color: #ffd700; }
        .scrolling-text { white-space: nowrap; overflow: hidden; font-size: 13px; color: #ccc; }
        .scrolling-text span { display: inline-block; animation: scroll 20s linear infinite; }
        @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .section-container { padding: 15px; }
        .section-title { font-size: 18px; color: #ffd700; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; border-left: 4px solid #ffd700; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 20px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; transition: transform 0.2s; border: 1px solid #2d323d; position: relative; }
        .game-card:active { transform: scale(0.97); }
        .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: 500; color: #fff; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
        .platform-intro { background: #1a1d24; border-radius: 12px; padding: 20px; margin: 20px 0; border: 1px solid #2d323d; }
        .platform-intro h1 { font-size: 20px; color: #ffd700; margin-bottom: 15px; }
        .platform-intro h2 { font-size: 17px; color: #fff; margin: 15px 0 10px; }
        .platform-intro p { font-size: 14px; color: #b0b0b0; margin-bottom: 10px; }
        .winning-records { background: #1a1d24; border-radius: 12px; height: 250px; overflow-y: auto; padding: 10px; border: 1px solid #2d323d; }
        .win-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2d323d; font-size: 12px; }
        .win-user { color: #ffd700; }
        .win-amount { color: #4caf50; font-weight: bold; }
        .reviews-container { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; border: 1px solid #2d323d; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 13px; }
        .reviewer-name { color: #ffd700; font-weight: 600; }
        .rating { color: #ff8c00; }
        .review-body { font-size: 13px; color: #ccc; font-style: italic; }
        .faq-section { background: #1a1d24; border-radius: 12px; padding: 15px; margin: 20px 0; border: 1px solid #2d323d; }
        .faq-item { margin-bottom: 15px; }
        .faq-item h3 { font-size: 14px; color: #fff; margin-bottom: 5px; }
        .faq-item p { font-size: 13px; color: #b0b0b0; }
        .navigater { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; height: 60px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2d323d; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #8e94a0; font-size: 11px; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: #ffd700; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323d; }
        .footer-row { margin-bottom: 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .footer-row a { font-size: 13px; color: #8e94a0; }
        .copyright { font-size: 12px; color: #5a606d; margin-top: 20px; }
        .trust-badges { display: flex; justify-content: center; gap: 20px; margin: 20px 0; opacity: 0.6; }
        .trust-badges i { font-size: 24px; }