* { 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; }
        .container { width: 100%; max-width: 600px; margin: 0 auto; padding: 0 15px; }
        
        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); }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #ffd700; letter-spacing: 1px; }
        .auth-btns { display: flex; gap: 10px; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #ffd700; padding: 6px 15px; border-radius: 20px; font-size: 14px; cursor: pointer; }
        .btn-register { background: linear-gradient(135deg, #ffd700, #ff8c00); color: #000; border: none; padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; }
        
        .banner { width: 100%; aspect-ratio: 2/1; display: block; cursor: pointer; overflow: hidden; margin-bottom: 10px; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        
        .announcement { background: #1a1d24; padding: 8px 15px; display: flex; align-items: center; gap: 10px; margin-bottom: 15px; border-radius: 8px; }
        .announcement i { color: #ffd700; }
        .scroll-text { flex: 1; overflow: hidden; white-space: nowrap; position: relative; font-size: 13px; }
        .scroll-text p { display: inline-block; animation: scroll 20s linear infinite; }
        @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        
        .section-title { font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; gap: 8px; color: #ffd700; border-left: 4px solid #ffd700; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; transition: transform 0.2s; border: 1px solid #2a2e35; }
        .game-card:active { transform: scale(0.95); }
        .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; color: #e0e0e0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        
        .intro-card { background: #1a1d24; border-radius: 12px; padding: 20px; margin-bottom: 25px; border: 1px solid #2a2e35; }
        .intro-card h1 { font-size: 20px; color: #ffd700; margin-bottom: 15px; text-align: center; }
        .intro-card p { font-size: 14px; color: #cccccc; margin-bottom: 15px; text-align: justify; }
        
        .stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        .stat-item { background: #252932; padding: 10px; border-radius: 8px; text-align: center; }
        .stat-item span { display: block; font-size: 16px; font-weight: bold; color: #ffd700; }
        .stat-item label { font-size: 10px; color: #888; text-transform: uppercase; }

        .winners-box { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 25px; max-height: 300px; overflow-y: auto; border: 1px solid #2a2e35; }
        .winner-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #2a2e35; font-size: 13px; }
        .winner-item:last-child { border-bottom: none; }
        .winner-name { color: #e0e0e0; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        
        .reviews-section { margin-bottom: 25px; }
        .review-card { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 12px; border: 1px solid #2a2e35; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .reviewer { font-weight: bold; color: #ffd700; font-size: 14px; }
        .stars { color: #ff8c00; font-size: 12px; }
        .review-content { font-size: 13px; color: #bbb; }

        .faq-section { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 25px; }
        .faq-item { margin-bottom: 15px; border-bottom: 1px solid #2a2e35; padding-bottom: 10px; }
        .faq-item:last-child { border-bottom: none; }
        .faq-question { font-weight: bold; font-size: 14px; color: #ffd700; margin-bottom: 5px; }
        .faq-answer { font-size: 13px; color: #bbb; }

        .trust-badges { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 25px; opacity: 0.7; }
        .trust-badges i { font-size: 24px; color: #888; }

        .navigater { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2a2e35; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #888; gap: 4px; }
        .nav-item i { font-size: 18px; }
        .nav-item span { font-size: 11px; }
        .nav-item.active { color: #ffd700; }

        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; color: #666; font-size: 12px; }
        .footer-row { display: flex; justify-content: center; gap: 15px; margin-bottom: 15px; flex-wrap: wrap; }
        .footer-row a { color: #888; }
        .copyright { margin-top: 20px; }
        .footer-tag { color: #ffd700; margin-bottom: 10px; font-weight: bold; }