body { margin: 0; padding: 0; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1218; color: #e2e8f0; line-height: 1.6; }
        a { text-decoration: none; color: inherit; }
        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); }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #fff; text-transform: uppercase; letter-spacing: 1px; }
        .auth-buttons { display: flex; gap: 8px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: 0.3s; }
        .btn-login { background: transparent; color: #f3ba2f; border: 1px solid #f3ba2f; }
        .btn-register { background: linear-gradient(135deg, #f3ba2f 0%, #d48c06 100%); 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: 8px 15px; display: flex; align-items: center; font-size: 13px; color: #f3ba2f; border-bottom: 1px solid #2d333d; }
        .announcement i { margin-right: 10px; }
        .marquee-box { overflow: hidden; white-space: nowrap; width: 100%; }
        .marquee { display: inline-block; animation: scroll 20s linear infinite; }
        @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .section-title { padding: 20px 15px 10px; font-size: 18px; color: #fff; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ''; width: 4px; height: 18px; background: #f3ba2f; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 10px 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.2); transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; font-size: 13px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { margin: 20px 15px; padding: 20px; background: linear-gradient(145deg, #1e232b, #13171f); border-radius: 16px; border: 1px solid #2d333d; }
        .intro-card h1 { font-size: 20px; color: #f3ba2f; margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #94a3b8; margin: 0; }
        .winning-list { margin: 20px 15px; background: #1a1d24; border-radius: 16px; padding: 15px; max-height: 300px; overflow-y: auto; }
        .winning-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #2d333d; font-size: 13px; }
        .winning-item:last-child { border: none; }
        .win-user { color: #e2e8f0; }
        .win-amount { color: #4ade80; font-weight: 600; }
        .reviews { padding: 10px 15px; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 3px solid #f3ba2f; }
        .review-user { font-weight: 600; font-size: 14px; margin-bottom: 5px; color: #fff; display: flex; align-items: center; gap: 8px; }
        .stars { color: #f3ba2f; font-size: 12px; }
        .review-text { font-size: 13px; color: #94a3b8; }
        .faq-section { padding: 10px 15px 100px; }
        .faq-item { background: #1a1d24; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; color: #fff; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: #94a3b8; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d333d; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: #94a3b8; width: 20%; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #f3ba2f; }
        footer { background: #0a0c10; padding: 30px 15px 120px; text-align: center; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: #94a3b8; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .footer-social a { font-size: 20px; color: #f3ba2f; }
        .copyright { font-size: 12px; color: #4b5563; }
        .trust-badges { display: flex; justify-content: center; gap: 15px; padding: 20px 0; opacity: 0.6; }
        .trust-badges i { font-size: 24px; }