body { margin: 0; padding: 0; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1218; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background: linear-gradient(180deg, #1e222d 0%, #161922 100%); 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; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #f3ba2f; text-transform: uppercase; letter-spacing: 1px; }
        .header-btns { display: flex; gap: 8px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background-color: transparent; color: #ffffff; border: 1px solid #f3ba2f; }
        .btn-reg { background: linear-gradient(90deg, #f3ba2f 0%, #d49a17 100%); color: #000000; }
        .btn:active { transform: scale(0.95); }
        .banner { width: 100%; aspect-ratio: 2 / 1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .marquee-box { background: #1e222d; padding: 8px 0; border-top: 1px solid #2d3343; border-bottom: 1px solid #2d3343; display: flex; align-items: center; }
        .marquee-icon { padding: 0 10px; color: #f3ba2f; }
        .marquee-content { flex: 1; overflow: hidden; white-space: nowrap; font-size: 13px; color: #b0b8c1; }
        .marquee-text { display: inline-block; animation: scroll-left 20s linear infinite; }
        @keyframes scroll-left { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .section-title { padding: 20px 15px 10px; display: flex; align-items: center; gap: 8px; }
        .section-title i { color: #f3ba2f; font-size: 18px; }
        .section-title h2 { font-size: 18px; margin: 0; font-weight: 600; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: #1e222d; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.3); transition: transform 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-info span { font-size: 13px; font-weight: 500; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
        .platform-intro { margin: 20px 15px; padding: 20px; background: #161922; border-radius: 15px; border: 1px solid #2d3343; }
        .platform-intro h1 { font-size: 20px; color: #f3ba2f; margin-bottom: 12px; }
        .platform-intro p { font-size: 14px; color: #b0b8c1; margin-bottom: 10px; }
        .winners-list { margin: 20px 15px; background: #1e222d; border-radius: 15px; padding: 15px; overflow: hidden; height: 200px; position: relative; }
        .winner-track { animation: slide-up 30s linear infinite; }
        .winner-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #2d3343; font-size: 12px; }
        .winner-user { color: #f3ba2f; }
        .winner-amt { color: #4caf50; font-weight: bold; }
        @keyframes slide-up { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0 15px 20px; }
        .feature-item { text-align: center; background: #161922; padding: 15px 5px; border-radius: 12px; border: 1px solid #2d3343; }
        .feature-item i { font-size: 24px; color: #f3ba2f; margin-bottom: 8px; display: block; }
        .feature-item span { font-size: 11px; color: #ffffff; }
        .reviews { padding: 0 15px 20px; }
        .review-card { background: #1e222d; padding: 15px; border-radius: 12px; margin-bottom: 10px; border-left: 4px solid #f3ba2f; }
        .review-user { font-weight: 600; font-size: 14px; margin-bottom: 5px; display: flex; justify-content: space-between; }
        .stars { color: #f3ba2f; font-size: 12px; }
        .review-text { font-size: 13px; color: #b0b8c1; font-style: italic; }
        .faq-section { padding: 0 15px 20px; }
        .faq-item { background: #1e222d; margin-bottom: 8px; border-radius: 8px; overflow: hidden; }
        .faq-q { padding: 12px 15px; font-weight: 600; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #2d3343; }
        .faq-a { padding: 12px 15px; font-size: 13px; color: #b0b8c1; }
        .navigater { position: fixed; bottom: 0; left: 0; right: 0; background: #161922; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d3343; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-link { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #8a919e; font-size: 11px; }
        .nav-link i { font-size: 20px; }
        .nav-link.active { color: #f3ba2f; }
        footer { background: #0a0c10; padding: 30px 15px 90px; text-align: center; border-top: 1px solid #2d3343; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; font-size: 13px; color: #b0b8c1; }
        .footer-socials { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .footer-socials a { font-size: 20px; color: #f3ba2f; }
        .copyright { font-size: 12px; color: #5a626d; }