* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1216; color: #ffffff; line-height: 1.5; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        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-container { display: flex; align-items: center; gap: 8px; }
        .logo-container img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-container strong { font-size: 16px; font-weight: normal; color: #f3ba2f; }
        .header-btns { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; }
        .btn-login { background: transparent; color: #f3ba2f; border: 1px solid #f3ba2f; }
        .btn-register { background: linear-gradient(180deg, #f3ba2f, #d49a17); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #1a1d24; padding: 8px 15px; display: flex; align-items: center; border-bottom: 1px solid #2d323d; }
        .announcement i { color: #f3ba2f; margin-right: 10px; }
        .marquee-box { overflow: hidden; white-space: nowrap; width: 100%; }
        .marquee { display: inline-block; animation: scroll 20s linear infinite; font-size: 13px; color: #ccc; }
        @keyframes scroll { from { transform: translateX(100%); } to { transform: translateX(-100%); } }
        .section-title { padding: 20px 15px 10px; display: flex; align-items: center; gap: 8px; font-size: 18px; color: #f3ba2f; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
        .intro-card { margin: 15px; padding: 20px; background: linear-gradient(135deg, #1a1d24 0%, #252a34 100%); border-radius: 15px; border-left: 4px solid #f3ba2f; }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; color: #f3ba2f; }
        .intro-card p { font-size: 14px; color: #b0b3b8; }
        .win-records { margin: 15px; background: #1a1d24; border-radius: 12px; padding: 15px; height: 250px; overflow-y: auto; }
        .win-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2d323d; font-size: 13px; }
        .win-user { color: #f3ba2f; }
        .win-amount { color: #4caf50; font-weight: bold; }
        .review-section { padding: 15px; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 10px; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .review-name { font-weight: bold; color: #f3ba2f; }
        .stars { color: #ffc107; font-size: 12px; }
        .review-text { font-size: 13px; color: #ccc; font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: #1a1d24; border-radius: 8px; margin-bottom: 10px; padding: 15px; }
        .faq-q { font-weight: bold; color: #f3ba2f; margin-bottom: 8px; display: block; }
        .faq-a { font-size: 14px; color: #b0b3b8; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; 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: #8e9297; font-size: 12px; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: #f3ba2f; }
        footer { background: #0a0c0f; padding: 30px 15px 100px; text-align: center; font-size: 13px; color: #666; }
        .footer-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 15px; }
        .footer-links a { color: #aaa; }
        .feature-box { display: flex; justify-content: space-around; padding: 20px 10px; background: #14171c; margin: 15px; border-radius: 12px; }
        .feature-item { text-align: center; flex: 1; }
        .feature-item i { font-size: 24px; color: #f3ba2f; margin-bottom: 8px; }
        .feature-item p { font-size: 11px; color: #8e9297; }