* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; background-color: #0f1218; color: #e0e0e0; 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; border-bottom: 1px solid #2d323d; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #fff; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; color: #ffd700; border: 1px solid #ffd700; }
        .btn-register { background: linear-gradient(180deg, #ffd700, #b8860b); color: #000; }
        main { padding: 10px; max-width: 800px; margin: 0 auto; }
        .banner { width: 100%; aspect-ratio: 2/1; border-radius: 12px; overflow: hidden; margin-bottom: 15px; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #1a1d24; padding: 10px; border-radius: 8px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; font-size: 14px; color: #ffd700; }
        .announcement i { font-size: 16px; }
        .scrolling-text { white-space: nowrap; overflow: hidden; position: relative; flex: 1; }
        .scrolling-text span { display: inline-block; padding-left: 100%; animation: scroll 20s linear infinite; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
        h1, h2 { font-size: 18px; margin: 20px 0 15px; border-left: 4px solid #ffd700; padding-left: 10px; color: #fff; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.3); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card p { padding: 8px; font-size: 13px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-section { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 25px; }
        .intro-section p { font-size: 14px; color: #b0b0b0; margin-bottom: 10px; }
        .winners-list { background: #1a1d24; border-radius: 12px; padding: 10px; height: 300px; overflow-y: auto; margin-bottom: 25px; }
        .winner-item { display: flex; justify-content: space-between; padding: 10px; border-bottom: 1px solid #2d323d; font-size: 13px; }
        .winner-item span:last-child { color: #4caf50; font-weight: bold; }
        .reviews-section { margin-bottom: 25px; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 10px; border-left: 3px solid #ffd700; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 14px; }
        .stars { color: #ffd700; font-size: 12px; }
        .review-body { font-size: 13px; color: #b0b0b0; font-style: italic; }
        .faq-section { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 25px; }
        .faq-item { margin-bottom: 15px; border-bottom: 1px solid #2d323d; padding-bottom: 10px; }
        .faq-item:last-child { border: none; }
        .faq-q { font-weight: bold; color: #ffd700; font-size: 14px; margin-bottom: 5px; display: block; }
        .faq-a { font-size: 13px; color: #b0b0b0; }
        .navigater { position: fixed; bottom: 0; left: 0; right: 0; 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; gap: 4px; font-size: 11px; color: #8e8e93; }
        .nav-item i { font-size: 20px; color: #ffd700; }
        footer { background: #1a1d24; 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: #8e8e93; }
        .copyright { font-size: 12px; color: #555; margin-top: 10px; }
        .bonus-badge { position: absolute; top: 10px; right: 10px; background: #ff4757; color: #fff; padding: 2px 8px; border-radius: 4px; font-size: 10px; font-weight: bold; }