body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1217; color: #ffffff; margin: 0; padding: 0; line-height: 1.6; padding-bottom: 70px; }
        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); }
        .header-left { display: flex; align-items: center; text-decoration: none; color: #ffffff; }
        .header-left img { width: 25px; height: 25px; border-radius: 5px; margin-right: 8px; }
        .header-left strong { font-size: 16px; font-weight: normal; }
        .header-right { display: flex; gap: 8px; }
        .btn-login { background: transparent; border: 1px solid #d4af37; color: #d4af37; padding: 6px 15px; border-radius: 20px; font-size: 14px; cursor: pointer; }
        .btn-register { background: linear-gradient(135deg, #d4af37, #f9df7b); border: none; color: #000; padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; }
        .banner { width: 100%; aspect-ratio: 2/1; display: block; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
        .announcement { background: #23272e; padding: 8px 15px; font-size: 13px; display: flex; align-items: center; border-bottom: 1px solid #333; }
        .announcement i { color: #d4af37; margin-right: 10px; }
        .marquee { overflow: hidden; white-space: nowrap; }
        .marquee p { display: inline-block; padding-left: 100%; animation: scroll-text 15s linear infinite; margin: 0; }
        @keyframes scroll-text { 0% { transform: translate(0, 0); } 100% { transform: translate(-100%, 0); } }
        .container { padding: 15px; }
        .section-title { font-size: 18px; margin: 15px 0 10px; border-left: 4px solid #d4af37; padding-left: 10px; display: flex; justify-content: space-between; align-items: center; }
        .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; transition: transform 0.2s; box-shadow: 0 4px 6px rgba(0,0,0,0.3); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; font-size: 13px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: linear-gradient(145deg, #1e222a, #1a1d24); border-radius: 15px; padding: 20px; margin: 20px 0; border: 1px solid #333; }
        .intro-card h1 { font-size: 18px; color: #d4af37; margin-top: 0; }
        .intro-card p { font-size: 14px; color: #ccc; margin-bottom: 0; }
        .winning-list { background: #1a1d24; border-radius: 15px; padding: 15px; margin: 20px 0; max-height: 250px; overflow-y: auto; }
        .winning-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2a2e36; font-size: 13px; }
        .winning-item span:first-child { color: #aaa; }
        .winning-item span:last-child { color: #4caf50; font-weight: bold; }
        .review-card { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 10px; border: 1px solid #2a2e36; }
        .review-header { display: flex; align-items: center; margin-bottom: 8px; }
        .review-stars { color: #d4af37; font-size: 12px; margin-right: 10px; }
        .review-user { font-size: 13px; font-weight: bold; }
        .review-text { font-size: 13px; color: #bbb; font-style: italic; }
        .faq-section { margin-top: 25px; }
        .faq-item { background: #1a1d24; border-radius: 8px; margin-bottom: 8px; overflow: hidden; }
        .faq-question { padding: 12px 15px; cursor: pointer; font-size: 14px; font-weight: bold; border-bottom: 1px solid #2a2e36; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 12px 15px; font-size: 13px; color: #ccc; }
        .trust-icons { display: flex; justify-content: center; gap: 20px; padding: 20px 0; opacity: 0.6; }
        .trust-icons i { font-size: 24px; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; height: 60px; display: flex; justify-content: space-around; align-items: center; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); z-index: 1000; }
        .nav-item { text-decoration: none; color: #8e94a0; display: flex; flex-direction: column; align-items: center; font-size: 11px; }
        .nav-item i { font-size: 18px; margin-bottom: 3px; }
        .nav-item:active { color: #d4af37; }
        footer { background: #0b0d10; padding: 30px 15px 100px; text-align: center; }
        .footer-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 15px; }
        .footer-row a { color: #8e94a0; text-decoration: none; font-size: 13px; }
        .footer-row a:hover { color: #d4af37; }
        .copyright { color: #555; font-size: 12px; margin-top: 10px; }