body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1218; color: #ffffff; margin: 0; padding: 0; line-height: 1.6; }
        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: #d4af37; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; text-decoration: none; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #d4af37; }
        .btn-register { background: linear-gradient(180deg, #ffd700, #d4af37); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #1e222b; padding: 8px 15px; font-size: 13px; display: flex; align-items: center; gap: 10px; overflow: hidden; white-space: nowrap; }
        .announcement i { color: #d4af37; }
        .marquee { display: inline-block; animation: scroll 20s linear infinite; }
        @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        main { padding: 15px; padding-bottom: 80px; }
        .section-title { font-size: 18px; color: #ffd700; margin: 20px 0 15px; display: flex; align-items: center; gap: 8px; border-left: 4px solid #d4af37; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; text-decoration: none; transition: 0.3s; border: 1px solid #2d323e; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { font-size: 13px; margin: 0; color: #e0e0e0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: normal; }
        .platform-intro { background: #1a1d24; border-radius: 15px; padding: 20px; margin: 25px 0; border: 1px solid #2d323e; }
        .platform-intro h1 { font-size: 22px; color: #ffd700; margin-bottom: 15px; text-align: center; }
        .winning-list { background: #1a1d24; border-radius: 15px; padding: 15px; border: 1px solid #2d323e; height: 300px; overflow-y: auto; }
        .win-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #2d323e; font-size: 13px; }
        .win-user { color: #8f94a1; }
        .win-amount { color: #4caf50; font-weight: bold; }
        .stats-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 20px 0; }
        .stat-card { background: #1a1d24; padding: 15px 5px; border-radius: 10px; text-align: center; border: 1px solid #2d323e; }
        .stat-card i { font-size: 20px; color: #ffd700; margin-bottom: 5px; }
        .stat-card div { font-size: 14px; font-weight: bold; }
        .stat-card span { font-size: 11px; color: #8f94a1; }
        .reviews-section { margin: 25px 0; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 15px; border-left: 3px solid #d4af37; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .review-user { font-weight: bold; color: #ffd700; font-size: 14px; }
        .review-rating { color: #ffcc00; font-size: 12px; }
        .review-content { font-size: 13px; color: #ccc; }
        .faq-section { margin: 25px 0; }
        .faq-item { background: #1a1d24; margin-bottom: 10px; border-radius: 8px; padding: 12px; }
        .faq-question { font-weight: bold; color: #ffd700; font-size: 14px; margin-bottom: 5px; }
        .faq-answer { font-size: 13px; color: #ccc; }
        .navigater { 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; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { text-decoration: none; text-align: center; color: #8f94a1; flex: 1; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 4px; }
        .nav-item span { font-size: 11px; }
        .nav-item:hover, .nav-item:active { color: #ffd700; }
        footer { background: #1a1d24; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323e; }
        .footer-row { margin-bottom: 20px; display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
        .footer-row a { color: #8f94a1; text-decoration: none; font-size: 13px; }
        .copyright { color: #5c626d; font-size: 12px; margin-top: 20px; }