* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0f1217; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; overflow-x: hidden; 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); }
        .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: #ffd700; }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #fff; border: 1px solid #ffd700; }
        .btn-register { background: linear-gradient(180deg, #ffd700, #b8860b); color: #000; }
        .btn-login:active, .btn-register:active { transform: scale(0.95); }
        main { padding: 10px; max-width: 800px; margin: 0 auto; }
        .banner { width: 100%; border-radius: 12px; overflow: hidden; margin-bottom: 15px; cursor: pointer; aspect-ratio: 2/1; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
        .banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .announcement { background: #1a1d24; padding: 8px 15px; border-radius: 25px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; border: 1px solid #2d323e; }
        .announcement i { color: #ffd700; }
        .scrolling-text { white-space: nowrap; overflow: hidden; flex: 1; }
        .scrolling-text div { display: inline-block; animation: marquee 20s linear infinite; font-size: 13px; color: #ccc; }
        @keyframes marquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .section-title { font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; gap: 8px; border-left: 4px solid #ffd700; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; transition: 0.3s; border: 1px solid #2d323e; position: relative; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 13px; font-weight: normal; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #ddd; }
        .intro-content { background: #1a1d24; padding: 20px; border-radius: 15px; margin-bottom: 25px; border: 1px solid #2d323e; }
        .intro-content h1 { font-size: 22px; color: #ffd700; margin-bottom: 15px; text-align: center; }
        .intro-content h2 { font-size: 18px; margin: 15px 0 10px; color: #ffd700; }
        .intro-content p { font-size: 14px; color: #aaa; margin-bottom: 10px; }
        .winners-box { background: #1a1d24; border-radius: 15px; padding: 15px; margin-bottom: 25px; border: 1px solid #2d323e; max-height: 300px; overflow-y: auto; }
        .winner-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2d323e; font-size: 13px; }
        .winner-item span:first-child { color: #aaa; }
        .winner-item span:last-child { color: #ffd700; font-weight: bold; }
        .trust-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .badge { background: #1a1d24; padding: 15px 10px; border-radius: 10px; text-align: center; border: 1px solid #2d323e; }
        .badge i { font-size: 24px; color: #ffd700; margin-bottom: 8px; display: block; }
        .badge span { font-size: 11px; color: #eee; }
        .reviews { margin-bottom: 25px; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid #2d323e; }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-user i { font-size: 30px; color: #444; }
        .review-name { font-size: 14px; font-weight: bold; }
        .stars { color: #ffd700; font-size: 12px; margin-bottom: 5px; }
        .review-text { font-size: 13px; color: #aaa; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: #1a1d24; border-radius: 10px; padding: 15px; margin-bottom: 10px; border: 1px solid #2d323e; }
        .faq-item h4 { font-size: 14px; margin-bottom: 8px; color: #eee; display: flex; align-items: center; gap: 8px; }
        .faq-item h4 i { color: #ffd700; }
        .faq-item p { font-size: 13px; color: #aaa; }
        .navigater { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; height: 60px; display: flex; justify-content: space-around; align-items: center; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 12px; color: #aaa; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #ffd700; }
        footer { background: #1a1d24; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323e; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: #aaa; }
        .copyright { font-size: 12px; color: #666; margin-top: 10px; }
        .download-btn-fixed { position: fixed; right: 15px; bottom: 80px; background: #ffd700; color: #000; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; box-shadow: 0 4px 15px rgba(255,215,0,0.4); z-index: 999; animation: pulse 2s infinite; }
        @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } }