* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #121418; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.5; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background: #1a1d24; padding: 10px 15px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d333d; 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; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #ffcc00; letter-spacing: 0.5px; }
        .header-right { display: flex; gap: 10px; }
        .btn-login { background: transparent; border: 1px solid #ffcc00; color: #ffcc00; padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; }
        .btn-register { background: linear-gradient(135deg, #ffcc00, #f39c12); border: none; color: #000; padding: 7px 16px; border-radius: 20px; font-size: 14px; font-weight: 700; cursor: pointer; }
        .banner { width: 100%; display: block; overflow: hidden; line-height: 0; }
        .banner img { width: 100%; aspect-ratio: 2/1; object-fit: cover; cursor: pointer; }
        .announcement { background: #242933; padding: 8px 10px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #2d333d; }
        .announcement i { color: #ffcc00; }
        .announcement-text { white-space: nowrap; overflow: hidden; position: relative; flex: 1; font-size: 13px; }
        .announcement-text span { display: inline-block; padding-left: 100%; animation: scrollText 20s linear infinite; }
        @keyframes scrollText { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
        main { padding: 15px; }
        .section-title { font-size: 18px; color: #ffcc00; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; font-weight: 700; }
        .section-title::before { content: ''; display: block; width: 4px; height: 18px; background: #ffcc00; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d333d; transition: transform 0.2s; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
        .game-card:active { transform: scale(0.96); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #e0e0e0; }
        .platform-intro { background: #1a1d24; border-radius: 15px; padding: 20px; margin-bottom: 25px; border: 1px solid #2d333d; }
        .platform-intro h1 { font-size: 20px; color: #ffcc00; margin-bottom: 15px; text-align: center; }
        .platform-intro p { font-size: 14px; color: #b0b0b0; margin-bottom: 15px; text-align: justify; }
        .winning-ticker { background: #1a1d24; border-radius: 15px; padding: 15px; margin-bottom: 25px; border: 1px solid #2d333d; height: 300px; overflow: hidden; position: relative; }
        .winning-list { animation: scrollWinners 40s linear infinite; }
        .winning-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #242933; font-size: 13px; }
        .winning-item span:first-child { color: #b0b0b0; }
        .winning-item span:last-child { color: #4cd137; font-weight: 700; }
        @keyframes scrollWinners { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .trust-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .badge-item { background: #1a1d24; padding: 15px 10px; border-radius: 12px; text-align: center; border: 1px solid #2d333d; }
        .badge-item i { font-size: 24px; color: #ffcc00; margin-bottom: 8px; }
        .badge-item span { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; }
        .user-reviews { margin-bottom: 25px; }
        .review-card { background: #242933; border-radius: 12px; padding: 15px; margin-bottom: 12px; border-left: 4px solid #ffcc00; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 13px; font-weight: 700; color: #ffcc00; }
        .review-body { font-size: 14px; font-style: italic; color: #e0e0e0; }
        .faq-section { background: #1a1d24; border-radius: 15px; padding: 20px; margin-bottom: 25px; }
        .faq-item { margin-bottom: 15px; border-bottom: 1px solid #2d333d; padding-bottom: 15px; }
        .faq-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
        .faq-item h3 { font-size: 15px; color: #ffcc00; margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: #b0b0b0; }
        .navigater { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d333d; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #b0b0b0; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 11px; }
        .nav-item:nth-child(3) { background: #ffcc00; width: 50px; height: 50px; border-radius: 50%; margin-top: -25px; border: 5px solid #121418; color: #000; justify-content: center; }
        footer { background: #1a1d24; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d333d; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: #b0b0b0; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .footer-social a { color: #ffcc00; font-size: 20px; }
        .footer-copy { font-size: 12px; color: #666; margin-top: 10px; }