* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #11141a; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background: #1a1d24; padding: 10px 15px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #f3c75f; }
        .header-btns { display: flex; gap: 10px; }
        .btn-login, .btn-reg { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; border: none; }
        .btn-login { background: transparent; color: #f3c75f; border: 1px solid #f3c75f; }
        .btn-reg { background: linear-gradient(180deg, #f3c75f 0%, #d4a017 100%); color: #1a1d24; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #1e222b; padding: 8px 15px; display: flex; align-items: center; gap: 10px; font-size: 13px; border-bottom: 1px solid #2c313c; }
        .announcement i { color: #f3c75f; }
        .marquee { overflow: hidden; white-space: nowrap; width: 100%; }
        .marquee p { display: inline-block; padding-left: 100%; animation: marquee 20s linear infinite; }
        @keyframes marquee { 0% { transform: translate(0, 0); } 100% { transform: translate(-100%, 0); } }
        main { padding: 15px; }
        h1 { font-size: 18px; color: #f3c75f; text-align: center; margin-bottom: 20px; }
        h2 { font-size: 16px; margin: 20px 0 15px; display: flex; align-items: center; gap: 8px; border-left: 4px solid #f3c75f; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2c313c; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card p { padding: 8px; font-size: 13px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-section { background: #1a1d24; padding: 20px; border-radius: 15px; margin-bottom: 25px; border: 1px solid #2c313c; }
        .intro-section p { font-size: 14px; color: #b0b0b0; margin-bottom: 10px; }
        .winning-box { background: #1a1d24; border-radius: 12px; padding: 15px; height: 250px; overflow-y: auto; border: 1px solid #2c313c; }
        .win-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #2c313c; font-size: 12px; }
        .win-item span:last-child { color: #4caf50; font-weight: bold; }
        .reviews { margin-top: 25px; }
        .review-card { background: #1e222b; padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 3px solid #f3c75f; }
        .stars { color: #f3c75f; font-size: 12px; margin-bottom: 5px; }
        .review-user { font-size: 14px; font-weight: bold; margin-bottom: 5px; display: block; }
        .review-text { font-size: 13px; color: #b0b0b0; }
        .faq-section { margin-top: 25px; }
        .faq-item { background: #1a1d24; border-radius: 10px; padding: 12px; margin-bottom: 10px; cursor: pointer; border: 1px solid #2c313c; }
        .faq-item h3 { font-size: 14px; margin-bottom: 5px; color: #f3c75f; }
        .faq-item p { font-size: 13px; color: #b0b0b0; }
        .navigater { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; box-shadow: 0 -2px 10px rgba(0,0,0,0.8); z-index: 1000; border-top: 1px solid #2c313c; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: #b0b0b0; width: 20%; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #f3c75f; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; }
        .foot-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 15px; }
        .foot-row a { font-size: 13px; color: #b0b0b0; }
        .copy-text { font-size: 12px; color: #666; margin-top: 10px; }