* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1116; color: #ffffff; line-height: 1.5; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        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; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #ffd700; }
        .header-btns { display: flex; gap: 8px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; border: 1px solid #ffd700; color: #ffd700; }
        .btn-register { background: linear-gradient(180deg, #ffd700, #b8860b); color: #000; }
        .main-container { max-width: 800px; margin: 0 auto; padding: 10px; }
        .banner { width: 100%; border-radius: 12px; overflow: hidden; margin-bottom: 10px; cursor: pointer; aspect-ratio: 2/1; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #1a1d24; padding: 8px 12px; border-radius: 8px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; font-size: 13px; color: #ccc; overflow: hidden; }
        .announcement i { color: #ffd700; }
        .marquee { white-space: nowrap; animation: scrollText 20s linear infinite; }
        @keyframes scrollText { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .section-title { font-size: 18px; font-weight: 600; margin: 20px 0 12px; display: flex; align-items: center; gap: 8px; color: #ffd700; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2a2e38; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { font-size: 13px; font-weight: normal; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: linear-gradient(145deg, #1a1d24, #2a2e38); border-radius: 15px; padding: 20px; margin: 20px 0; border-left: 4px solid #ffd700; }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; color: #ffd700; }
        .intro-card p { font-size: 14px; color: #bbb; text-align: justify; }
        .win-records { background: #1a1d24; border-radius: 12px; padding: 15px; margin: 20px 0; max-height: 300px; overflow-y: auto; }
        .win-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2a2e38; font-size: 12px; }
        .win-user { color: #ffd700; }
        .win-amount { color: #00ff00; font-weight: bold; }
        .trust-badge { display: flex; justify-content: space-around; padding: 20px 0; background: #1a1d24; border-radius: 12px; margin: 20px 0; }
        .trust-item { text-align: center; font-size: 11px; color: #888; }
        .trust-item i { font-size: 24px; color: #ffd700; margin-bottom: 5px; display: block; }
        .review-card { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 10px; border: 1px solid #2a2e38; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .stars { color: #ffd700; font-size: 12px; }
        .reviewer { font-weight: 600; font-size: 14px; }
        .review-body { font-size: 13px; color: #ccc; font-style: italic; }
        .faq-section { margin: 20px 0; }
        .faq-item { background: #1a1d24; border-radius: 10px; padding: 15px; margin-bottom: 10px; border: 1px solid #2a2e38; }
        .faq-item h3 { font-size: 15px; color: #ffd700; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #bbb; text-align: justify; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; 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: #888; font-size: 12px; flex: 1; }
        .nav-item i { font-size: 18px; display: block; margin-bottom: 3px; }
        .nav-item:hover, .nav-item.active { color: #ffd700; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; font-size: 13px; color: #666; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 15px; }
        .footer-links a { color: #bbb; }
        .copyright { margin-top: 20px; font-size: 11px; color: #444; }