* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; background-color: #0f1217; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        header { background: #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 #2d323b; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #ffd700; }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-reg { border: none; padding: 8px 16px; border-radius: 20px; font-weight: 600; cursor: pointer; transition: 0.3s; font-size: 14px; }
        .btn-login { background: transparent; color: #fff; border: 1px solid #ffd700; }
        .btn-reg { background: linear-gradient(180deg, #ffd700, #b8860b); color: #000; }
        .banner { width: 100%; display: block; cursor: pointer; }
        .banner img { width: 100%; aspect-ratio: 2/1; display: block; object-fit: cover; }
        .announcement { background: #1a1d24; color: #ffd700; padding: 10px; overflow: hidden; white-space: nowrap; position: relative; border-bottom: 1px solid #2d323b; font-size: 13px; }
        .announcement span { display: inline-block; animation: scrollText 20s linear infinite; }
        @keyframes scrollText { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .container { padding: 15px; }
        h1 { font-size: 18px; color: #ffd700; margin-bottom: 15px; text-align: center; }
        h2 { font-size: 1.2rem; margin: 20px 0 15px; border-left: 4px solid #ffd700; padding-left: 10px; color: #fff; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; text-decoration: none; color: #fff; border: 1px solid #2d323b; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; height: auto; 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: 20px 0; border: 1px solid #2d323b; }
        .intro-section p { font-size: 14px; color: #b0b3b8; margin-bottom: 15px; }
        .winning-ticker { background: #1a1d24; border-radius: 15px; padding: 15px; border: 1px solid #2d323b; max-height: 250px; overflow-y: auto; }
        .winning-item { display: flex; justify-content: space-between; font-size: 13px; padding: 8px 0; border-bottom: 1px solid #2d323b; }
        .winning-item span:first-child { color: #ffd700; }
        .winning-item span:last-child { color: #4caf50; font-weight: bold; }
        .feature-box { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 20px 0; }
        .feature-item { background: #1a1d24; padding: 15px 5px; border-radius: 10px; text-align: center; font-size: 12px; border: 1px solid #2d323b; }
        .feature-item i { font-size: 24px; color: #ffd700; margin-bottom: 8px; display: block; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #2d323b; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
        .stars { color: #ffd700; font-size: 12px; }
        .review-user { font-weight: bold; font-size: 14px; }
        .review-text { font-size: 13px; color: #b0b3b8; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 10px; padding: 15px; border: 1px solid #2d323b; }
        .faq-item h3 { font-size: 14px; margin-bottom: 8px; color: #ffd700; }
        .faq-item p { font-size: 13px; color: #b0b3b8; }
        .navigater { position: fixed; bottom: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323b; z-index: 1000; }
        .nav-link { text-decoration: none; color: #b0b3b8; font-size: 11px; text-align: center; display: flex; flex-direction: column; gap: 4px; }
        .nav-link i { font-size: 18px; }
        .nav-link.active, .nav-link:hover { color: #ffd700; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323b; }
        .footer-row { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 15px; }
        .footer-row a { color: #b0b3b8; text-decoration: none; font-size: 13px; }
        .footer-copy { font-size: 12px; color: #65676b; margin-top: 20px; }