* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1115; color: #ffffff; line-height: 1.6; overflow-x: hidden; padding-bottom: 70px; }
        header { background-color: #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); }
        .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; letter-spacing: 0.5px; }
        .header-right { display: flex; gap: 10px; }
        .btn { border: none; padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block; }
        .btn-login { background-color: transparent; border: 1px solid #d4af37; color: #d4af37; }
        .btn-register { background: linear-gradient(135deg, #d4af37, #f9e29a); color: #000; }
        .banner { width: 100%; display: block; cursor: pointer; }
        .banner img { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; }
        .announcement { background-color: #1e222a; height: 35px; display: flex; align-items: center; padding: 0 10px; overflow: hidden; border-bottom: 1px solid #2a2f3a; }
        .announcement i { color: #d4af37; margin-right: 10px; }
        .scroll-text { white-space: nowrap; animation: scroll 20s linear infinite; color: #cbd5e0; font-size: 13px; }
        @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        main { padding: 15px; max-width: 1200px; margin: 0 auto; }
        .section-title { font-size: 18px; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; border-left: 4px solid #d4af37; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background-color: #1a1d24; border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid #2a2f3a; transition: transform 0.2s; position: relative; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; display: block; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 8px; text-align: center; }
        .game-info span { font-size: 13px; color: #e2e8f0; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: linear-gradient(145deg, #1a1d24, #252a34); border-radius: 15px; padding: 20px; margin-bottom: 25px; border: 1px solid #d4af3744; }
        .intro-card h1 { font-size: 18px; color: #d4af37; margin-bottom: 10px; line-height: 1.4; }
        .intro-card p { font-size: 14px; color: #a0aec0; }
        .trust-badges { display: flex; justify-content: space-around; background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 25px; border: 1px solid #2a2f3a; }
        .badge-item { text-align: center; font-size: 11px; color: #d4af37; }
        .badge-item i { font-size: 24px; display: block; margin-bottom: 5px; }
        .winning-records { background-color: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 25px; border: 1px solid #2a2f3a; }
        .record-list { height: 200px; overflow: hidden; position: relative; }
        .record-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2a2f3a; font-size: 12px; animation: slideUp 10s linear infinite; }
        @keyframes slideUp { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .record-user { color: #a0aec0; }
        .record-amount { color: #48bb78; font-weight: bold; }
        .partners { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; opacity: 0.6; }
        .partners i { font-size: 30px; }
        .reviews { margin-bottom: 25px; }
        .review-card { background: #1e222a; border-radius: 12px; padding: 15px; margin-bottom: 10px; border-left: 3px solid #d4af37; }
        .review-user { font-weight: bold; font-size: 14px; margin-bottom: 5px; display: flex; align-items: center; justify-content: space-between; }
        .stars { color: #f6ad55; font-size: 10px; }
        .review-text { font-size: 13px; color: #cbd5e0; font-style: italic; }
        .faq-section { background-color: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 25px; }
        .faq-item { margin-bottom: 15px; }
        .faq-item h3 { font-size: 15px; color: #d4af37; margin-bottom: 5px; }
        .faq-item p { font-size: 13px; color: #cbd5e0; border-bottom: 1px solid #2a2f3a; padding-bottom: 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background-color: #1a1d24; height: 60px; display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid #2a2f3a; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; justify-content: center; text-decoration: none; color: #a0aec0; font-size: 11px; }
        .nav-item i { font-size: 18px; margin-bottom: 3px; }
        .nav-item:active { color: #d4af37; }
        footer { background-color: #1a1d24; padding: 30px 15px 100px; text-align: center; }
        .footer-row { margin-bottom: 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .footer-link { color: #a0aec0; text-decoration: none; font-size: 13px; }
        .footer-link:hover { color: #d4af37; }
        .copyright { font-size: 12px; color: #718096; border-top: 1px solid #2a2f3a; padding-top: 20px; }