body { margin: 0; padding: 0; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1218; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        header { background: #1a1d24; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; 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; text-decoration: none; color: #fff; }
        .header-left img { width: 25px; height: 25px; margin-right: 8px; }
        .header-left strong { font-size: 16px; font-weight: normal; }
        .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: #ffd700; border: 1px solid #ffd700; }
        .btn-register { background: linear-gradient(180deg, #ffd700 0%, #b8860b 100%); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #23272f; padding: 8px 15px; display: flex; align-items: center; font-size: 13px; color: #ffd700; }
        .announcement i { margin-right: 10px; }
        .marquee { overflow: hidden; white-space: nowrap; }
        .marquee-content { display: inline-block; animation: scroll 20s linear infinite; }
        @keyframes scroll { from { transform: translateX(100%); } to { transform: translateX(-100%); } }
        .section-title { padding: 20px 15px 10px; font-size: 18px; color: #ffd700; display: flex; align-items: center; gap: 8px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px 20px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; text-decoration: none; color: #fff; box-shadow: 0 4px 6px rgba(0,0,0,0.3); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card .info { padding: 8px; font-size: 12px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: #1a1d24; margin: 15px; padding: 20px; border-radius: 15px; border: 1px solid #333; }
        .intro-card h1 { font-size: 18px; color: #ffd700; margin: 0 0 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #ccc; margin: 0; }
        .pro-elements { padding: 20px 15px; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
        .pro-item { background: #23272f; padding: 15px; border-radius: 12px; text-align: center; }
        .pro-item i { font-size: 24px; color: #ffd700; margin-bottom: 8px; }
        .pro-item span { display: block; font-size: 12px; color: #fff; }
        .winning-list { margin: 15px; background: #1a1d24; border-radius: 15px; overflow: hidden; }
        .winning-header { padding: 12px 15px; background: #23272f; font-size: 14px; color: #ffd700; font-weight: bold; border-bottom: 1px solid #333; }
        .winning-item { display: flex; justify-content: space-between; padding: 10px 15px; font-size: 12px; border-bottom: 1px solid #23272f; }
        .winning-item span:last-child { color: #4caf50; font-weight: bold; }
        .reviews { padding: 15px; }
        .review-card { background: #23272f; padding: 15px; border-radius: 12px; margin-bottom: 12px; }
        .review-user { display: flex; align-items: center; margin-bottom: 8px; gap: 10px; }
        .review-user i { font-size: 20px; color: #ffd700; }
        .review-content { font-size: 13px; color: #bbb; font-style: italic; }
        .faq-section { padding: 20px 15px; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-size: 14px; font-weight: 600; color: #ffd700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: #ccc; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { text-decoration: none; color: #8e94a3; display: flex; flex-direction: column; align-items: center; font-size: 11px; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: #ffd700; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #23272f; }
        .footer-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-link { color: #8e94a3; text-decoration: none; font-size: 13px; }
        .copyright { font-size: 12px; color: #555; margin-top: 20px; }