body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1216; color: #ffffff; margin: 0; padding: 0; line-height: 1.6; }
        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: #fff; }
        .header-left img { width: 25px; height: 25px; margin-right: 8px; border-radius: 4px; }
        .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(180deg, #ffd700, #d4af37); color: #000; border: none; padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; }
        main { max-width: 800px; margin: 0 auto; padding-bottom: 80px; }
        .banner { width: 100%; display: block; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #242832; padding: 8px 15px; overflow: hidden; white-space: nowrap; display: flex; align-items: center; }
        .announcement i { color: #d4af37; margin-right: 10px; }
        .marquee { display: inline-block; animation: scroll 20s linear infinite; font-size: 13px; color: #ccc; }
        @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .section-title { padding: 15px; font-size: 18px; color: #d4af37; display: flex; align-items: center; gap: 8px; margin: 0; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 12px 20px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; text-decoration: none; color: #fff; display: block; border: 1px solid #2d323e; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .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; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
        .intro-card { background: #1a1d24; margin: 15px; padding: 20px; border-radius: 16px; border-left: 4px solid #d4af37; }
        .intro-card h1 { font-size: 18px; margin: 0 0 10px; color: #d4af37; line-height: 1.4; }
        .intro-card p { font-size: 14px; color: #aaa; margin: 0; text-align: justify; }
        .winners-box { background: #1a1d24; margin: 15px; border-radius: 16px; padding: 15px; }
        .winner-row { display: flex; justify-content: space-between; font-size: 13px; padding: 8px 0; border-bottom: 1px solid #2d323e; }
        .winner-row:last-child { border-bottom: none; }
        .winner-name { color: #fff; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .trust-badges { display: flex; justify-content: space-around; padding: 20px; flex-wrap: wrap; gap: 15px; background: #1a1d24; margin: 15px; border-radius: 16px; }
        .trust-item { text-align: center; font-size: 11px; color: #ccc; flex: 1; min-width: 80px; }
        .trust-item i { font-size: 24px; color: #d4af37; display: block; margin-bottom: 5px; }
        .reviews-section { padding: 0 15px 20px; }
        .review-card { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 12px; border: 1px solid #2d323e; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 13px; }
        .stars { color: #ffcc00; }
        .review-text { font-size: 13px; color: #bbb; font-style: italic; }
        .faq-section { padding: 0 15px 20px; }
        .faq-item { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 10px; }
        .faq-item h3 { font-size: 15px; color: #d4af37; margin: 0 0 8px; }
        .faq-item p { font-size: 13px; color: #aaa; margin: 0; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323e; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { text-decoration: none; color: #8e94a3; text-align: center; font-size: 11px; flex: 1; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 4px; }
        .nav-item span { display: block; }
        footer { background: #0f1216; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323e; }
        .footer-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 15px; }
        .footer-links a { color: #8e94a3; text-decoration: none; font-size: 13px; }
        .copyright { color: #555; font-size: 12px; margin-top: 15px; }