* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0f1217; color: #e0e0e0; 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; }
        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 #2d323d; }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #ffffff; }
        .header-right { display: flex; gap: 8px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; color: #d4af37; border: 1px solid #d4af37; }
        .btn-register { background: linear-gradient(135deg, #d4af37, #f9df7b); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #1a1d24; padding: 10px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #2d323d; }
        .announcement i { color: #d4af37; }
        .marquee { overflow: hidden; white-space: nowrap; width: 100%; }
        .marquee p { display: inline-block; padding-left: 100%; animation: scroll 20s linear infinite; font-size: 13px; }
        @keyframes scroll { 0% { transform: translate(0, 0); } 100% { transform: translate(-100%, 0); } }
        .section-container { padding: 15px; }
        .section-title { font-size: 18px; color: #ffffff; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; border-left: 4px solid #d4af37; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323d; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.97); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { font-size: 12px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #ccc; }
        .intro-card { background: linear-gradient(145deg, #1a1d24, #252a34); border-radius: 15px; padding: 20px; margin: 20px 0; border: 1px solid #d4af3733; }
        .intro-card h1 { font-size: 20px; color: #d4af37; margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #b0b0b0; }
        .winning-list { background: #1a1d24; border-radius: 12px; padding: 10px; height: 250px; overflow-y: auto; border: 1px solid #2d323d; }
        .winning-item { display: flex; justify-content: space-between; padding: 8px 5px; border-bottom: 1px solid #252a34; font-size: 13px; }
        .winning-item span:first-child { color: #888; }
        .winning-item span:last-child { color: #4caf50; font-weight: bold; }
        .pro-elements { display: flex; justify-content: space-around; padding: 20px 0; background: #0f1217; }
        .pro-item { text-align: center; flex: 1; }
        .pro-item i { font-size: 24px; color: #d4af37; margin-bottom: 8px; }
        .pro-item p { font-size: 11px; color: #888; text-transform: uppercase; }
        .reviews { margin-top: 20px; }
        .review-card { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 12px; border-left: 3px solid #d4af37; }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-user i { font-size: 20px; color: #555; }
        .review-stars { color: #ffcc00; font-size: 12px; }
        .review-text { font-size: 13px; color: #b0b0b0; font-style: italic; }
        .faq-section { margin-top: 25px; }
        .faq-item { background: #1a1d24; border-radius: 8px; margin-bottom: 10px; padding: 15px; border: 1px solid #2d323d; }
        .faq-item h3 { font-size: 15px; color: #ffffff; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
        .faq-item p { font-size: 13px; color: #888; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; height: 60px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2d323d; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #888; font-size: 11px; }
        .nav-item i { font-size: 20px; margin-bottom: 2px; }
        .nav-item.active { color: #d4af37; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #1a1d24; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: #888; }
        .footer-policy { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .footer-policy a { font-size: 12px; color: #555; }
        .copyright { font-size: 11px; color: #444; }