* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0d0f14; color: #ffffff; line-height: 1.5; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }
        header { position: sticky; top: 0; z-index: 1000; background: rgba(26, 29, 36, 0.95); backdrop-filter: blur(10px); padding: 10px 15px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #2a2e37; }
        .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: #f1f1f1; }
        .header-right { display: flex; gap: 8px; }
        .btn-login { padding: 6px 15px; border-radius: 20px; border: 1px solid #d4af37; color: #d4af37; font-size: 14px; font-weight: 600; }
        .btn-register { padding: 6px 15px; border-radius: 20px; background: linear-gradient(135deg, #d4af37, #f9e29a); color: #000; font-size: 14px; font-weight: 600; border: none; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; 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 #2a2e37; }
        .announcement i { color: #d4af37; }
        .marquee { overflow: hidden; white-space: nowrap; width: 100%; font-size: 13px; color: #ccc; }
        .marquee-content { display: inline-block; animation: scroll 25s linear infinite; }
        @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .section-title { padding: 20px 15px 10px; display: flex; align-items: center; gap: 8px; }
        .section-title h2 { font-size: 18px; color: #f1f1f1; border-left: 3px solid #d4af37; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2a2e37; transition: transform 0.2s; position: relative; }
        .game-card:active { transform: scale(0.97); }
        .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: 500; color: #eee; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { margin: 20px 15px; padding: 20px; background: linear-gradient(145deg, #1e222b, #15181f); border-radius: 15px; border: 1px solid #2a2e37; text-align: center; }
        .intro-card h1 { font-size: 18px; color: #d4af37; margin-bottom: 12px; }
        .intro-card p { font-size: 14px; color: #aaa; line-height: 1.6; }
        .feature-box { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0 15px 20px; }
        .feature-item { text-align: center; background: #1a1d24; padding: 12px 5px; border-radius: 10px; border: 1px solid #2a2e37; }
        .feature-item i { font-size: 20px; color: #d4af37; margin-bottom: 5px; display: block; }
        .feature-item span { font-size: 11px; color: #ccc; }
        .winning-list { margin: 15px; background: #1a1d24; border-radius: 12px; border: 1px solid #2a2e37; height: 180px; overflow: hidden; position: relative; }
        .winning-header { padding: 10px 15px; border-bottom: 1px solid #2a2e37; display: flex; justify-content: space-between; align-items: center; }
        .winning-header span { font-size: 14px; font-weight: 600; color: #d4af37; }
        .winning-scroll { padding: 5px 15px; animation: winScroll 30s linear infinite; }
        .winning-item { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px dashed #2a2e37; font-size: 13px; color: #ddd; }
        @keyframes winScroll { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .review-section { padding: 15px; }
        .review-card { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 12px; border: 1px solid #2a2e37; }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-user .avatar { width: 35px; height: 35px; background: #333; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; color: #d4af37; border: 1px solid #d4af37; }
        .review-user .stars { color: #d4af37; font-size: 12px; }
        .review-content { font-size: 13px; color: #bbb; font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: #1a1d24; border-radius: 10px; padding: 15px; margin-bottom: 10px; border: 1px solid #2a2e37; }
        .faq-item h3 { font-size: 15px; color: #d4af37; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #ccc; line-height: 1.6; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; height: 60px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2a2e37; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #888; font-size: 11px; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: #d4af37; }
        footer { padding: 30px 15px 20px; background: #0a0c10; border-top: 1px solid #2a2e37; text-align: center; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-links a { font-size: 14px; color: #aaa; }
        .footer-legal { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-legal a { font-size: 12px; color: #777; }
        .copyright { font-size: 11px; color: #555; }
        .trust-icons { display: flex; justify-content: center; gap: 15px; padding: 20px 0; opacity: 0.5; filter: grayscale(1); }