* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1218; 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; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2a2e37; }
        .header-wrap { display: flex; justify-content: space-between; align-items: center; height: 100%; padding: 0 15px; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #f3ba2f; }
        .header-buttons { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; color: #f3ba2f; border: 1px solid #f3ba2f; }
        .btn-register { background: linear-gradient(135deg, #f3ba2f 0%, #d4a017 100%); color: #000; }
        .banner { width: 100%; display: block; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #1a1d24; padding: 10px; display: flex; align-items: center; gap: 10px; font-size: 13px; color: #cfd8dc; border-bottom: 1px solid #2a2e37; }
        .announcement i { color: #f3ba2f; }
        .marquee { overflow: hidden; white-space: nowrap; width: 100%; }
        .marquee p { display: inline-block; animation: scroll 20s linear infinite; padding-left: 100%; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
        .section-title { margin: 20px 0 15px; font-size: 18px; color: #f3ba2f; display: flex; align-items: center; gap: 8px; font-weight: 600; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2a2e37; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #eceff1; }
        .intro-card { background: linear-gradient(135deg, #1e222d 0%, #11141b 100%); border-radius: 15px; padding: 20px; margin: 25px 0; border-left: 4px solid #f3ba2f; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
        .intro-card h1 { font-size: 18px; color: #f3ba2f; margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #b0bec5; text-align: justify; }
        .trust-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 25px 0; text-align: center; }
        .badge-item { background: #1a1d24; padding: 15px 10px; border-radius: 12px; border: 1px solid #2a2e37; }
        .badge-item i { font-size: 24px; color: #f3ba2f; margin-bottom: 8px; }
        .badge-item span { display: block; font-size: 11px; color: #cfd8dc; font-weight: 600; }
        .winner-list { background: #1a1d24; border-radius: 12px; padding: 15px; 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-item:last-child { border-bottom: none; }
        .winner-user { color: #f3ba2f; font-weight: 600; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .review-section { margin: 25px 0; }
        .review-card { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 15px; border: 1px solid #2a2e37; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .review-name { font-weight: 600; color: #f3ba2f; font-size: 14px; }
        .stars { color: #ffc107; font-size: 12px; }
        .review-text { font-size: 13px; color: #b0bec5; font-style: italic; }
        .faq-section { margin: 25px 0; }
        .faq-item { background: #1a1d24; border-radius: 10px; padding: 15px; margin-bottom: 10px; border: 1px solid #2a2e37; }
        .faq-item h3 { font-size: 15px; color: #f3ba2f; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #b0bec5; text-align: justify; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 60px; background: #1a1d24; border-top: 1px solid #2a2e37; display: flex; justify-content: space-around; align-items: center; z-index: 1000; }
        .nav-item { text-align: center; color: #90a4ae; flex: 1; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 3px; }
        .nav-item span { font-size: 11px; }
        .nav-item:hover { color: #f3ba2f; }
        footer { background: #0a0c10; padding: 30px 15px 100px; border-top: 1px solid #2a2e37; text-align: center; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-links a { color: #90a4ae; font-size: 13px; transition: color 0.3s; }
        .footer-links a:hover { color: #f3ba2f; }
        .copyright { font-size: 12px; color: #546e7a; margin-top: 20px; }