* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1116; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        header { background: #1a1d24; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #2d323d; }
        .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: #f1c40f; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 13px; font-weight: bold; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #f1c40f; }
        .btn-register { background: linear-gradient(180deg, #f1c40f, #d4ac0d); color: #000; }
        .banner { width: 100%; display: block; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #242933; padding: 8px; overflow: hidden; white-space: nowrap; display: flex; align-items: center; }
        .announcement i { margin-right: 10px; color: #f1c40f; }
        .announcement marquee { font-size: 13px; color: #bdc3c7; }
        .container { padding: 15px; }
        .section-title { font-size: 18px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; color: #f1c40f; }
        .section-title::before { content: ''; display: block; width: 4px; height: 18px; background: #f1c40f; border-radius: 2px; }
        .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 #2d323d; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 8px; font-size: 12px; text-align: center; color: #ecf0f1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .platform-intro { background: #1a1d24; border-radius: 15px; padding: 20px; margin-bottom: 25px; border: 1px solid #2d323d; }
        .platform-intro h1 { font-size: 20px; color: #f1c40f; margin-bottom: 10px; text-align: center; }
        .platform-intro p { font-size: 14px; color: #bdc3c7; text-align: justify; }
        .winning-box { background: #1a1d24; border-radius: 15px; padding: 15px; margin-bottom: 25px; border: 1px solid #2d323d; height: 250px; overflow: hidden; position: relative; }
        .winning-scroll { animation: scrollUp 40s linear infinite; }
        .winning-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2d323d; font-size: 12px; }
        .winning-item span:first-child { color: #bdc3c7; }
        .winning-item span:last-child { color: #2ecc71; font-weight: bold; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .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; border: 1px solid #2d323d; }
        .trust-item i { font-size: 24px; color: #f1c40f; margin-bottom: 5px; }
        .trust-item p { font-size: 10px; color: #bdc3c7; }
        .reviews { margin-bottom: 25px; }
        .review-card { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 10px; border: 1px solid #2d323d; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .review-name { font-weight: bold; font-size: 14px; color: #f1c40f; }
        .review-stars { color: #f1c40f; font-size: 12px; }
        .review-content { font-size: 13px; color: #bdc3c7; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 8px; border: 1px solid #2d323d; padding: 12px; }
        .faq-question { font-size: 14px; font-weight: bold; color: #ecf0f1; margin-bottom: 5px; }
        .faq-answer { font-size: 13px; color: #bdc3c7; }
        .navigater { position: fixed; bottom: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323d; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #bdc3c7; font-size: 11px; }
        .nav-item i { font-size: 20px; margin-bottom: 3px; }
        .nav-item.active { color: #f1c40f; }
        footer { background: #1a1d24; padding: 30px 15px; border-top: 1px solid #2d323d; text-align: center; }
        .footer-links { margin-bottom: 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; font-size: 13px; color: #bdc3c7; }
        .footer-links a:hover { color: #f1c40f; }
        .footer-copyright { font-size: 12px; color: #7f8c8d; border-top: 1px solid #2d323d; padding-top: 20px; }