* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0f1217; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background: #1a1d24; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; 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: #f3ba2f; }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register { 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(180deg, #f3ba2f 0%, #d4a017 100%); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #1a1d24; padding: 8px 15px; display: flex; align-items: center; gap: 10px; font-size: 13px; border-bottom: 1px solid #2d323e; }
        .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%); } }
        main { padding: 15px; max-width: 800px; margin: 0 auto; }
        .section-title { font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; gap: 8px; border-left: 4px solid #f3ba2f; padding-left: 10px; }
        .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 #2d323e; transition: transform 0.2s; }
        .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: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #e0e0e0; }
        .intro-card { background: linear-gradient(145deg, #1e222b, #15181f); padding: 20px; border-radius: 15px; border: 1px solid #f3ba2f33; margin: 25px 0; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
        .intro-card h1 { font-size: 18px; color: #f3ba2f; margin-bottom: 12px; line-height: 1.4; }
        .intro-card p { font-size: 14px; color: #b0b3b8; }
        .winning-list { background: #1a1d24; border-radius: 12px; padding: 10px; border: 1px solid #2d323e; max-height: 300px; overflow-y: auto; }
        .winning-item { display: flex; justify-content: space-between; padding: 8px; border-bottom: 1px solid #2d323e; font-size: 13px; }
        .winning-item:last-child { border-bottom: none; }
        .winning-user { color: #f3ba2f; }
        .winning-amount { color: #4caf50; font-weight: bold; }
        .reviews-container { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; border: 1px solid #2d323e; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .review-user { font-weight: 600; font-size: 14px; color: #f3ba2f; }
        .stars { color: #f3ba2f; font-size: 12px; }
        .review-text { font-size: 13px; color: #b0b3b8; font-style: italic; }
        .faq-container { display: flex; flex-direction: column; gap: 12px; margin-bottom: 25px; }
        .faq-item { background: #1a1d24; border-radius: 10px; border: 1px solid #2d323e; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; border-bottom: 1px solid #2d323e; color: #f3ba2f; display: flex; align-items: center; gap: 10px; }
        .faq-answer { padding: 15px; font-size: 13px; color: #b0b3b8; background: #15181f; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323e; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #b0b3b8; font-size: 11px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active, .nav-item:hover { color: #f3ba2f; }
        footer { background: #1a1d24; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323e; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 15px; }
        .footer-links a { font-size: 13px; color: #b0b3b8; }
        .footer-links a:hover { color: #f3ba2f; }
        .footer-copy { font-size: 12px; color: #666; margin-top: 20px; }
        .trust-badges { display: flex; justify-content: center; gap: 20px; margin: 20px 0; opacity: 0.6; }
        .trust-badges i { font-size: 24px; }