* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0f1115; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; 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-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #ffd700; letter-spacing: 0.5px; }
        .auth-btns { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 13px; font-weight: bold; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; border: 1px solid #ffd700; color: #ffd700; }
        .btn-reg { background: linear-gradient(180deg, #ffd700, #b8860b); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; display: block; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #242832; padding: 8px 15px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #333; }
        .announcement i { color: #ffd700; }
        .scroller { flex: 1; overflow: hidden; white-space: nowrap; font-size: 13px; color: #ccc; }
        .scroller span { display: inline-block; animation: scrollText 20s linear infinite; }
        @keyframes scrollText { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .section-title { padding: 20px 15px 10px; font-size: 18px; color: #ffd700; display: flex; align-items: center; gap: 8px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 12px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2a2e38; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h4 { padding: 8px; font-size: 12px; font-weight: normal; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #eee; }
        .intro-content { padding: 20px 15px; background: #16191f; margin-top: 20px; }
        .intro-content h1 { font-size: 20px; margin-bottom: 15px; color: #ffd700; }
        .intro-content h2 { font-size: 16px; margin: 15px 0 10px; color: #f1c40f; }
        .intro-content p { font-size: 14px; color: #aaa; margin-bottom: 10px; }
        .winner-ticker { padding: 0 15px; margin: 20px 0; }
        .winner-list { background: #1a1d24; border-radius: 12px; padding: 10px; height: 200px; overflow-y: auto; border: 1px solid #2a2e38; }
        .winner-item { display: flex; justify-content: space-between; padding: 8px 5px; border-bottom: 1px solid #242832; font-size: 13px; }
        .winner-item span:last-child { color: #2ecc71; font-weight: bold; }
        .features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 20px 15px; text-align: center; }
        .feat-item i { font-size: 24px; color: #ffd700; margin-bottom: 8px; }
        .feat-item p { font-size: 11px; color: #ccc; }
        .reviews { padding: 0 15px; margin-bottom: 30px; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 10px; border-left: 4px solid #ffd700; }
        .review-user { font-weight: bold; font-size: 14px; margin-bottom: 5px; display: flex; justify-content: space-between; }
        .review-stars { color: #f1c40f; font-size: 12px; }
        .review-text { font-size: 13px; color: #bbb; font-style: italic; }
        .faq-section { padding: 0 15px 30px; }
        .faq-item { background: #1a1d24; border-radius: 8px; padding: 15px; margin-bottom: 10px; }
        .faq-item h3 { font-size: 14px; color: #eee; margin-bottom: 5px; }
        .faq-item p { font-size: 13px; color: #999; }
        .navigater { 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 #2a2e38; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: #888; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: #ffd700; }
        footer { background: #0a0c10; padding: 30px 15px 20px; text-align: center; border-top: 1px solid #1a1d24; }
        .footer-row { display: flex; justify-content: center; gap: 15px; margin-bottom: 15px; flex-wrap: wrap; }
        .footer-row a { font-size: 13px; color: #888; transition: 0.3s; }
        .footer-row a:hover { color: #ffd700; }
        .copyright { font-size: 12px; color: #555; margin-top: 10px; }