body { background-color: #0f1218; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; 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; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-area strong { font-size: 16px; font-weight: normal; letter-spacing: 0.5px; }
        .auth-btns { display: flex; gap: 8px; }
        .btn-login, .btn-reg { border: none; padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; transition: 0.3s; }
        .btn-login { background: transparent; color: #fff; border: 1px solid #d4af37; }
        .btn-reg { background: linear-gradient(135deg, #f3c147, #d4af37); color: #000; }
        .banner { width: 100%; display: block; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #1e222b; padding: 8px 15px; display: flex; align-items: center; font-size: 13px; color: #f3c147; border-bottom: 1px solid #2d323e; overflow: hidden; }
        .announcement i { margin-right: 10px; }
        .marquee { white-space: nowrap; animation: scrollText 20s linear infinite; }
        @keyframes scrollText { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        main { padding: 15px; padding-bottom: 80px; }
        h1, h2, h3 { color: #f3c147; font-weight: 600; text-align: center; margin-bottom: 20px; }
        h1 { font-size: 24px; margin-top: 10px; }
        h2 { font-size: 20px; margin-top: 30px; display: flex; align-items: center; justify-content: center; gap: 10px; }
        h2::before, h2::after { content: ""; height: 2px; width: 30px; background: #f3c147; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; transition: 0.3s; text-decoration: none; border: 1px solid #2d323e; }
        .game-card:hover { transform: translateY(-5px); border-color: #f3c147; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .game-info span { font-size: 13px; color: #fff; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-box { background: #1a1d24; padding: 20px; border-radius: 15px; border-left: 4px solid #d4af37; margin: 30px 0; }
        .intro-box p { font-size: 14px; color: #ccc; margin: 0; text-align: justify; }
        .winners-box { background: #1a1d24; border-radius: 12px; padding: 15px; margin: 25px 0; border: 1px solid #2d323e; height: 300px; overflow: hidden; position: relative; }
        .winners-list { animation: winnerScroll 40s linear infinite; }
        .winner-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed #2d323e; font-size: 13px; }
        .winner-item span:first-child { color: #f3c147; }
        .winner-item span:last-child { color: #4caf50; font-weight: bold; }
        @keyframes winnerScroll { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .review-section { margin: 30px 0; }
        .review-card { background: #242832; padding: 15px; border-radius: 12px; margin-bottom: 12px; position: relative; }
        .review-user { font-weight: 600; color: #f3c147; font-size: 14px; margin-bottom: 5px; display: block; }
        .review-text { font-size: 13px; color: #bbb; font-style: italic; }
        .review-stars { color: #ffc107; font-size: 10px; margin-bottom: 5px; }
        .faq-section { margin-top: 30px; }
        .faq-item { background: #1a1d24; border-radius: 8px; margin-bottom: 10px; padding: 15px; border: 1px solid #2d323e; }
        .faq-item h3 { font-size: 15px; text-align: left; margin: 0 0 8px 0; color: #f3c147; }
        .faq-item p { font-size: 13px; color: #bbb; margin: 0; }
        .navigater { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 2px solid #d4af37; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .navigater a { text-decoration: none; color: #8e94a3; display: flex; flex-direction: column; align-items: center; font-size: 11px; gap: 4px; transition: 0.3s; }
        .navigater a i { font-size: 18px; }
        .navigater a:hover { color: #f3c147; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323e; }
        .footer-row { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 15px; }
        .footer-row a { color: #8e94a3; text-decoration: none; font-size: 13px; transition: 0.3s; }
        .footer-row a:hover { color: #f3c147; }
        .footer-copy { color: #555; font-size: 12px; margin-top: 15px; }
        .trust-icons { display: flex; justify-content: center; gap: 20px; margin: 20px 0; opacity: 0.6; }
        .trust-icons i { font-size: 24px; color: #fff; }