* { margin: 0; padding: 0; box-sizing: border-box; }
        body { background-color: #0f1115; color: #e0e0e0; 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; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323d; }
        .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 16px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; }
        .btn-login { background: transparent; color: #d4af37; border: 1px solid #d4af37; }
        .btn-register { background: linear-gradient(135deg, #d4af37, #f9e297); color: #1a1d24; }
        .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; overflow: hidden; border-bottom: 1px solid #2d323d; display: flex; align-items: center; }
        .announcement i { color: #d4af37; margin-right: 10px; }
        .marquee { white-space: nowrap; animation: scroll 20s linear infinite; font-size: 13px; color: #d4af37; }
        @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .section-title { padding: 15px; display: flex; align-items: center; gap: 10px; font-size: 18px; color: #fff; }
        .section-title i { color: #d4af37; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 12px 15px; }
        .game-card { background: #1a1d24; 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.97); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; font-size: 13px; color: #ccc; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
        .intro-card { margin: 15px; padding: 20px; background: linear-gradient(145deg, #1e222b, #1a1d24); border-radius: 15px; border: 1px solid #2d323d; }
        .intro-card h1 { font-size: 18px; color: #d4af37; margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #aaa; text-align: justify; }
        .winning-box { margin: 15px; background: #1a1d24; border-radius: 12px; padding: 15px; }
        .winning-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #252a30; font-size: 13px; }
        .winning-item:last-child { border-bottom: none; }
        .win-user { color: #888; }
        .win-amount { color: #4caf50; font-weight: bold; }
        .win-game { color: #d4af37; }
        .professional-badge { display: flex; justify-content: space-around; padding: 20px 10px; background: #15181f; margin-bottom: 15px; }
        .badge-item { text-align: center; font-size: 11px; color: #888; }
        .badge-item i { display: block; font-size: 24px; color: #d4af37; margin-bottom: 5px; }
        .reviews { padding: 0 15px; }
        .review-card { background: #1e222b; padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 3px solid #d4af37; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 13px; }
        .review-name { color: #fff; font-weight: 600; }
        .review-stars { color: #f1c40f; }
        .review-content { font-size: 13px; color: #aaa; }
        .faq-section { padding: 15px; }
        .faq-item { margin-bottom: 15px; background: #1a1d24; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 12px 15px; background: #252a34; font-size: 14px; font-weight: 600; color: #d4af37; display: flex; align-items: center; gap: 10px; }
        .faq-answer { padding: 15px; font-size: 13px; color: #aaa; border-top: 1px solid #2d323d; }
        .navigator { position: fixed; bottom: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 8px 0; border-top: 1px solid #2d323d; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { text-align: center; color: #888; font-size: 11px; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        .nav-item.active { color: #d4af37; }
        footer { background: #15181f; padding: 30px 15px 100px; text-align: center; font-size: 13px; color: #666; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 15px; }
        .footer-links a { color: #aaa; }
        .copyright { margin-top: 20px; font-size: 11px; }