* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        body { background-color: #0f1218; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        header { background: #1a1d24; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .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: #f0f0f0; }
        .header-btns { display: flex; gap: 10px; }
        .btn-login { padding: 6px 15px; background: transparent; border: 1px solid #d4af37; color: #d4af37; border-radius: 20px; font-size: 14px; cursor: pointer; }
        .btn-register { padding: 6px 15px; background: linear-gradient(135deg, #d4af37, #f9df7b); color: #1a1d24; border: none; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .announcement { background: #1e222b; height: 36px; display: flex; align-items: center; padding: 0 10px; overflow: hidden; border-bottom: 1px solid #2d323e; }
        .announcement i { color: #d4af37; margin-right: 10px; }
        .marquee { white-space: nowrap; animation: scrollText 20s linear infinite; }
        @keyframes scrollText { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .container { padding: 15px; }
        .section-title { font-size: 18px; margin-bottom: 15px; color: #d4af37; display: flex; align-items: center; gap: 8px; }
        .section-title::before { content: ""; width: 4px; height: 18px; background: #d4af37; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1e222b; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.3); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #e0e0e0; font-weight: 500; }
        .intro-card { background: linear-gradient(145deg, #1a1d24, #252a34); border-radius: 15px; padding: 20px; margin-bottom: 25px; border: 1px solid #2d323e; }
        .intro-card h1 { font-size: 20px; color: #d4af37; margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #b0b0b0; }
        .trust-elements { display: flex; justify-content: space-around; background: #1e222b; padding: 20px 10px; border-radius: 12px; margin-bottom: 25px; }
        .trust-item { text-align: center; font-size: 12px; color: #808080; }
        .trust-item i { font-size: 24px; color: #d4af37; margin-bottom: 8px; display: block; }
        .winning-list { background: #1e222b; border-radius: 12px; padding: 15px; margin-bottom: 25px; max-height: 300px; overflow-y: auto; }
        .win-record { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2d323e; font-size: 13px; }
        .win-record:last-child { border-bottom: none; }
        .win-user { color: #d4af37; }
        .win-amount { color: #4caf50; font-weight: bold; }
        .reviews { margin-bottom: 25px; }
        .review-card { background: #1e222b; border-radius: 12px; padding: 15px; margin-bottom: 12px; border-left: 3px solid #d4af37; }
        .review-user { font-weight: bold; font-size: 14px; margin-bottom: 5px; color: #f0f0f0; display: flex; justify-content: space-between; }
        .stars { color: #ffc107; font-size: 12px; }
        .review-text { font-size: 13px; color: #b0b0b0; font-style: italic; }
        .faq-section { background: #1e222b; border-radius: 12px; padding: 15px; margin-bottom: 25px; }
        .faq-item { margin-bottom: 15px; }
        .faq-item h3 { font-size: 15px; color: #d4af37; margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: #b0b0b0; text-align: justify; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: #1a1d24; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2d323e; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #808080; font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active, .nav-item:active { color: #d4af37; }
        footer { background: #0f1218; padding: 30px 15px 100px; text-align: center; color: #606060; border-top: 1px solid #1e222b; }
        .footer-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 15px; font-size: 13px; }
        .footer-link { color: #808080; }
        .copyright { font-size: 12px; margin-top: 10px; }