* { 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; }
        header { background: linear-gradient(180deg, #1e222d 0%, #13161f 100%); padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323e; display: flex; justify-content: space-between; align-items: center; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 5px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #f3ba2f; letter-spacing: 0.5px; }
        .header-right { display: flex; gap: 10px; }
        .btn-login { padding: 6px 15px; border-radius: 20px; font-size: 13px; font-weight: 600; background: transparent; border: 1px solid #f3ba2f; color: #f3ba2f; }
        .btn-register { padding: 6px 15px; border-radius: 20px; font-size: 13px; font-weight: 600; background: linear-gradient(180deg, #f3ba2f 0%, #d49a17 100%); border: none; color: #000; }
        .banner { width: 100%; aspect-ratio: 2 / 1; overflow: hidden; cursor: pointer; }
        .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 #2d323e; }
        .announcement i { color: #f3ba2f; }
        .marquee-box { overflow: hidden; white-space: nowrap; flex: 1; font-size: 13px; color: #ccc; }
        .marquee-content { display: inline-block; animation: marquee 20s linear infinite; }
        @keyframes marquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .section-container { padding: 15px; }
        .section-title { font-size: 18px; font-weight: 700; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; color: #f3ba2f; }
        .section-title::before { content: ''; width: 4px; height: 18px; background: #f3ba2f; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1e222d; border-radius: 12px; overflow: hidden; border: 1px solid #2d323e; 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; display: block; }
        .game-card .game-info { padding: 8px; text-align: center; }
        .game-card .game-info h3 { font-size: 12px; font-weight: 500; color: #efefef; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-box { background: #1e222d; border-radius: 15px; padding: 20px; margin-bottom: 25px; border: 1px solid #2d323e; }
        .intro-box h1 { font-size: 20px; color: #f3ba2f; margin-bottom: 10px; }
        .intro-box p { font-size: 14px; color: #b0b0b0; margin-bottom: 15px; }
        .promo-banner { background: linear-gradient(45deg, #2d323e, #1a1d24); border-radius: 12px; padding: 15px; margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; border-left: 4px solid #f3ba2f; }
        .promo-text h4 { font-size: 16px; color: #fff; }
        .promo-text p { font-size: 12px; color: #aaa; }
        .winners-box { background: #161922; border-radius: 12px; padding: 10px; margin-bottom: 25px; border: 1px solid #2d323e; height: 200px; overflow-y: auto; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 5px; border-bottom: 1px solid #2d323e; font-size: 12px; }
        .winner-row span:first-child { color: #aaa; }
        .winner-row span:last-child { color: #4caf50; font-weight: bold; }
        .reviews-container { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .review-card { background: #1e222d; padding: 15px; border-radius: 12px; border-bottom: 2px solid #f3ba2f; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .review-user { font-weight: 600; color: #f3ba2f; font-size: 14px; }
        .review-stars { color: #ffc107; font-size: 12px; }
        .review-text { font-size: 13px; color: #ddd; font-style: italic; }
        .faq-container { margin-bottom: 25px; }
        .faq-item { background: #1e222d; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 12px 15px; font-weight: 600; font-size: 14px; color: #f3ba2f; display: flex; justify-content: space-between; cursor: pointer; }
        .faq-answer { padding: 0 15px 12px; font-size: 13px; color: #b0b0b0; }
        .navigater { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323e; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #8a8e97; font-size: 11px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #f3ba2f; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323e; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: #8a8e97; }
        .footer-contact { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; font-size: 18px; color: #f3ba2f; }
        .copyright { font-size: 12px; color: #555; }