* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0f1218; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        header { background-color: #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 #2d323e; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #f39c12; }
        .auth-btns { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; transition: 0.3s; border: none; }
        .btn-login { background-color: transparent; color: #ffffff; border: 1px solid #f39c12; }
        .btn-reg { background-color: #f39c12; color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .announcement { background: #1a1d24; padding: 10px; display: flex; align-items: center; overflow: hidden; border-bottom: 1px solid #2d323e; }
        .announcement i { color: #f39c12; margin-right: 10px; }
        .marquee { white-space: nowrap; animation: scrollText 20s linear infinite; font-size: 13px; color: #ccc; }
        @keyframes scrollText { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        main { padding: 15px; max-width: 1200px; margin: 0 auto; }
        h1, h2, h3 { color: #f39c12; margin-bottom: 15px; text-align: center; }
        h1 { font-size: 1.2rem; }
        .section-title { font-size: 1.1rem; margin-top: 20px; display: flex; align-items: center; justify-content: center; gap: 10px; }
        .section-title::before, .section-title::after { content: ""; height: 1px; background: #2d323e; flex: 1; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323e; transition: transform 0.2s; position: relative; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 8px; text-align: center; }
        .game-info p { font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-content { background: #1a1d24; padding: 20px; border-radius: 12px; margin: 20px 0; font-size: 14px; color: #bdc3c7; text-align: justify; }
        .winners-list { background: #1a1d24; border-radius: 12px; padding: 15px; max-height: 300px; overflow-y: auto; margin-top: 15px; border: 1px solid #2d323e; }
        .winner-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #262a33; font-size: 13px; }
        .winner-item span:last-child { color: #2ecc71; font-weight: bold; }
        .trust-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 25px 0; text-align: center; }
        .trust-item i { font-size: 24px; color: #f39c12; margin-bottom: 5px; }
        .trust-item p { font-size: 11px; }
        .reviews { margin-top: 30px; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 10px; border-left: 4px solid #f39c12; }
        .review-user { display: flex; justify-content: space-between; margin-bottom: 5px; font-weight: bold; font-size: 14px; }
        .stars { color: #f1c40f; font-size: 12px; }
        .review-text { font-size: 13px; color: #bdc3c7; font-style: italic; }
        .faq-section { margin-top: 30px; }
        .faq-item { background: #1a1d24; margin-bottom: 8px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 12px 15px; cursor: pointer; font-size: 14px; font-weight: bold; display: flex; justify-content: space-between; background: #262a33; }
        .faq-answer { padding: 12px 15px; font-size: 13px; color: #bdc3c7; display: block; border-top: 1px solid #2d323e; }
        .navigater { position: fixed; bottom: 0; left: 0; right: 0; height: 60px; background: #1a1d24; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2d323e; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: #bdc3c7; }
        .nav-item i { font-size: 20px; margin-bottom: 2px; }
        .nav-item:hover { color: #f39c12; }
        footer { padding: 30px 15px; background: #0a0c10; text-align: center; font-size: 13px; color: #7f8c8d; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 15px; }
        .footer-links a { color: #bdc3c7; }
        .footer-bottom { margin-top: 20px; border-top: 1px solid #2d323e; padding-top: 20px; }