* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        body { background-color: #0f1218; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; border-radius: 8px; }
        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; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #f1c40f; }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register { padding: 6px 15px; border-radius: 20px; font-size: 13px; font-weight: bold; cursor: pointer; border: none; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #f1c40f; }
        .btn-register { background: linear-gradient(180deg, #f1c40f 0%, #d4ac0d 100%); color: #1a1d24; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
        .announcement { background: #1a1d24; height: 36px; display: flex; align-items: center; padding: 0 10px; overflow: hidden; border-bottom: 1px solid #2a2e37; }
        .announcement i { color: #f1c40f; margin-right: 10px; }
        .marquee { white-space: nowrap; animation: scroll 20s linear infinite; font-size: 14px; color: #ccc; }
        @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .container { padding: 15px; }
        .section-title { font-size: 18px; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; color: #f1c40f; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 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.97); }
        .game-info { padding: 8px; text-align: center; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #eee; }
        .intro-card { background: linear-gradient(135deg, #1a1d24 0%, #2c3e50 100%); border-radius: 15px; padding: 20px; margin-bottom: 25px; border: 1px solid #34495e; }
        .intro-card h1 { font-size: 20px; color: #f1c40f; margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #bdc3c7; }
        .trust-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; text-align: center; }
        .trust-item { background: #1a1d24; padding: 10px; border-radius: 10px; font-size: 11px; border: 1px solid #2a2e37; }
        .trust-item i { font-size: 20px; color: #f1c40f; margin-bottom: 5px; display: block; }
        .winners-box { background: #1a1d24; border-radius: 15px; padding: 15px; margin-bottom: 25px; height: 300px; overflow-y: auto; border: 1px solid #2a2e37; }
        .winner-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #2a2e37; font-size: 13px; }
        .winner-user { color: #eee; }
        .winner-amount { color: #2ecc71; font-weight: bold; }
        .review-card { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 15px; border-left: 4px solid #f1c40f; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 13px; }
        .review-stars { color: #f1c40f; }
        .review-text { font-size: 14px; color: #bdc3c7; font-style: italic; }
        .faq-section { background: #1a1d24; border-radius: 15px; padding: 15px; margin-bottom: 25px; }
        .faq-item { margin-bottom: 20px; }
        .faq-item h3 { font-size: 15px; color: #f1c40f; margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: #bdc3c7; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: #1a1d24; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2a2e37; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #888; font-size: 11px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #f1c40f; }
        footer { background: #111; 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; font-size: 14px; color: #bdc3c7; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .footer-social a { font-size: 20px; color: #f1c40f; }
        .copyright { font-size: 12px; color: #666; margin-top: 15px; }