* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; }
        body { background-color: #0f1116; color: #e0e0e0; line-height: 1.6; 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; text-transform: uppercase; letter-spacing: 1px; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background: transparent; border: 1px solid #d4af37; color: #d4af37; }
        .btn-register { background: linear-gradient(180deg, #ffd700, #d4af37); color: #000; }
        .btn:active { transform: scale(0.95); }
        .banner { width: 100%; display: block; cursor: pointer; }
        .banner img { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; }
        .announcement { background: #1a1d24; padding: 8px 0; border-bottom: 1px solid #2d323d; overflow: hidden; white-space: nowrap; display: flex; align-items: center; }
        .announcement i { margin-left: 15px; color: #d4af37; margin-right: 10px; }
        .announcement-text { display: inline-block; animation: scroll-left 20s linear infinite; font-size: 13px; color: #ffd700; }
        @keyframes scroll-left { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .section-title { padding: 20px 15px 10px; font-size: 18px; color: #fff; display: flex; align-items: center; gap: 8px; }
        .section-title i { color: #d4af37; }
        .game-grid { display: flex; flex-wrap: wrap; padding: 0 10px; }
        .game-card { width: 50%; padding: 5px; box-sizing: border-box; }
        .game-card-inner { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323d; transition: 0.3s; position: relative; }
        .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: #fff; }
        .intro-content { padding: 20px 15px; background: #16191f; margin: 15px; border-radius: 15px; border: 1px solid #2d323d; }
        .intro-content h1 { font-size: 20px; color: #ffd700; margin-bottom: 15px; }
        .intro-content h2 { font-size: 17px; color: #d4af37; margin: 15px 0 10px; }
        .intro-content p { font-size: 14px; color: #a0a0a0; margin-bottom: 12px; }
        .winning-ticker { margin: 15px; background: #1a1d24; border-radius: 15px; padding: 15px; border: 1px solid #2d323d; }
        .winning-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #242831; font-size: 13px; }
        .winning-row:last-child { border-bottom: none; }
        .win-user { color: #888; }
        .win-amount { color: #4caf50; font-weight: bold; }
        .reviews-section { padding: 15px; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 10px; border-left: 4px solid #d4af37; }
        .review-user { font-weight: bold; font-size: 14px; color: #ffd700; margin-bottom: 5px; display: block; }
        .review-stars { color: #ffbf00; font-size: 12px; margin-bottom: 5px; }
        .review-text { font-size: 13px; font-style: italic; color: #ccc; }
        .faq-section { padding: 15px; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 8px; overflow: hidden; border: 1px solid #2d323d; }
        .faq-question { padding: 12px 15px; font-size: 14px; font-weight: bold; color: #fff; cursor: pointer; display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 12px; font-size: 13px; color: #a0a0a0; }
        .navigater { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2d323d; z-index: 1000; padding: 0 10px; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #888; gap: 5px; flex: 1; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 11px; }
        .nav-item.active { color: #ffd700; }
        footer { background: #0a0c10; padding: 30px 15px 10px; text-align: center; border-top: 1px solid #2d323d; }
        .footer-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-row a { font-size: 13px; color: #888; transition: color 0.3s; }
        .footer-row a:hover { color: #d4af37; }
        .copyright { font-size: 12px; color: #555; margin-top: 10px; padding-bottom: 20px; }
        .badge-container { display: flex; justify-content: center; gap: 15px; padding: 20px 0; opacity: 0.6; }
        .badge-container i { font-size: 24px; }