* { 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.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }
        
        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 #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: #ffcc00; letter-spacing: 0.5px; }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.3s; }
        .btn-login { background: transparent; border: 1px solid #ffcc00; color: #ffcc00; }
        .btn-register { background: linear-gradient(180deg, #ffde59 0%, #ffcc00 100%); color: #000; border: none; }

        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .announcement { background: #1a1d24; padding: 10px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #2a2e37; }
        .announcement i { color: #ffcc00; }
        .marquee { overflow: hidden; white-space: nowrap; flex: 1; position: relative; }
        .marquee span { display: inline-block; animation: scroll 20s linear infinite; font-size: 13px; color: #ccc; }
        @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: #ffcc00; text-transform: uppercase; }
        .section-title i { color: #ffcc00; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.3); 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: 12px; font-weight: normal; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #eee; }

        .intro-box { margin: 20px 15px; padding: 20px; background: #1a1d24; border-radius: 15px; border-left: 4px solid #ffcc00; }
        .intro-box p { font-size: 14px; color: #bbb; }

        .winners-container { margin: 20px 15px; background: #1a1d24; border-radius: 15px; padding: 15px; }
        .winners-list { height: 200px; overflow-y: auto; scrollbar-width: none; }
        .winners-list::-webkit-scrollbar { display: none; }
        .winner-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #2a2e37; font-size: 13px; }
        .winner-user { color: #eee; }
        .winner-amount { color: #ffcc00; font-weight: bold; }

        .promo-banner { margin: 20px 15px; background: linear-gradient(45deg, #2c3e50, #000000); padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #444; }
        .promo-banner h3 { color: #ffcc00; margin-bottom: 10px; font-size: 20px; }
        .promo-banner p { font-size: 14px; color: #ddd; margin-bottom: 15px; }
        .btn-download { display: inline-block; padding: 10px 25px; background: #ffcc00; color: #000; border-radius: 25px; font-weight: bold; }

        .reviews { padding: 0 15px; margin: 20px 0; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 10px; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .review-user { font-weight: bold; font-size: 14px; color: #ffcc00; }
        .stars { color: #ffcc00; font-size: 12px; }
        .review-text { font-size: 13px; color: #ccc; font-style: italic; }

        .faq-section { padding: 0 15px; margin: 30px 0; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 14px; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: #bbb; }

        .navigater { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2a2e37; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: #8e94a3; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #ffcc00; }

        footer { background: #0f1216; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2a2e37; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: #8e94a3; }
        .footer-contact { margin-bottom: 20px; display: flex; justify-content: center; gap: 20px; font-size: 20px; color: #ffcc00; }
        .copyright { font-size: 12px; color: #555; }