* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1217; color: #e0e0e0; line-height: 1.6; 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 #2d323e; }
        .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: #fff; }
        .header-right { 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: #d4af37; border: 1px solid #d4af37; }
        .btn-register { background: linear-gradient(135deg, #d4af37, #f9e29b); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; display: block; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #1e222b; padding: 8px 15px; display: flex; align-items: center; gap: 10px; font-size: 13px; border-bottom: 1px solid #2d323e; }
        .announcement i { color: #d4af37; }
        .scrolling-text { white-space: nowrap; overflow: hidden; position: relative; flex: 1; }
        .scrolling-text p { display: inline-block; padding-left: 100%; animation: scroll 20s linear infinite; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
        main { padding: 15px; max-width: 800px; margin: 0 auto; }
        h1 { font-size: 18px; color: #fff; text-align: center; margin-bottom: 20px; line-height: 1.3; }
        h2 { font-size: 16px; color: #d4af37; margin: 20px 0 15px; display: flex; align-items: center; gap: 8px; }
        h2::before { content: ""; display: inline-block; width: 4px; height: 16px; background: #d4af37; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.3); transition: 0.3s; border: 1px solid #2d323e; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card .title { padding: 8px; font-size: 13px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #ccc; }
        .platform-intro { background: #1a1d24; padding: 20px; border-radius: 12px; margin: 25px 0; border: 1px solid #2d323e; }
        .platform-intro h3 { font-size: 15px; color: #fff; margin-bottom: 10px; }
        .platform-intro p { font-size: 13px; color: #999; margin-bottom: 15px; }
        .winning-list { background: #1a1d24; border-radius: 12px; padding: 10px; height: 250px; overflow-y: auto; border: 1px solid #2d323e; }
        .winner-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 5px; border-bottom: 1px solid #2d323e; font-size: 12px; }
        .winner-item:last-child { border-bottom: none; }
        .winner-user { color: #d4af37; font-weight: 600; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .winner-game { color: #888; }
        .reviews { margin: 25px 0; }
        .review-card { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 10px; border: 1px solid #2d323e; }
        .review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
        .review-user { font-weight: 600; font-size: 14px; color: #fff; }
        .review-stars { color: #ffca28; font-size: 12px; }
        .review-text { font-size: 13px; color: #999; font-style: italic; }
        .faq { margin: 25px 0; }
        .faq-item { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 10px; border: 1px solid #2d323e; }
        .faq-question { font-weight: 600; font-size: 14px; color: #fff; margin-bottom: 8px; display: block; }
        .faq-answer { font-size: 13px; color: #999; }
        .navigater { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323e; 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; font-size: 11px; color: #888; }
        .nav-item i { font-size: 20px; color: #d4af37; }
        footer { padding: 30px 15px 100px; background: #0b0d10; text-align: center; font-size: 12px; color: #555; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 15px; }
        .footer-links a { color: #888; }
        .copyright { margin-top: 15px; border-top: 1px solid #1a1d24; padding-top: 15px; }
        .cta-section { text-align: center; margin: 30px 0; background: linear-gradient(45deg, #1a1d24, #2d323e); padding: 25px; border-radius: 12px; }
        .cta-section h3 { margin-bottom: 15px; color: #d4af37; }
        .btn-large { display: inline-block; padding: 12px 30px; border-radius: 30px; font-size: 16px; margin-top: 10px; width: 100%; max-width: 250px; }