* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #11141b; color: #ffffff; 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; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }

        header { background-color: #1a1d24; height: 60px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323e; }
        .header-wrap { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0 15px; }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; object-fit: contain; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: #f39c12; }
        .header-btns { display: flex; gap: 10px; }
        .btn-login, .btn-reg { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; }
        .btn-login { background: transparent; color: #fff; border: 1px solid #f39c12; }
        .btn-reg { background: linear-gradient(135deg, #f39c12, #d35400); color: #fff; }

        .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 15px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #2d323e; }
        .announcement i { color: #f39c12; }
        .announcement marquee { font-size: 13px; color: #bdc3c7; }

        .section-title { padding: 20px 15px 10px; font-size: 18px; color: #fff; display: flex; align-items: center; gap: 8px; }
        .section-title::before { content: ""; width: 4px; height: 18px; background: #f39c12; border-radius: 2px; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 10px 15px; }
        .game-card { background: #252932; border-radius: 12px; overflow: hidden; transition: transform 0.2s; position: relative; }
        .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; background: #252932; }

        .intro-card { background: #1a1d24; margin: 20px 15px; padding: 20px; border-radius: 15px; border: 1px solid #2d323e; }
        .intro-card h1 { font-size: 20px; color: #f39c12; margin-bottom: 15px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #bdc3c7; text-align: justify; }

        .winning-scroll { background: #1a1d24; margin: 20px 15px; border-radius: 15px; padding: 15px; height: 250px; overflow-y: auto; border: 1px solid #2d323e; }
        .winning-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2d323e; font-size: 12px; }
        .winning-item span:nth-child(2) { color: #2ecc71; font-weight: bold; }
        .winning-item span:nth-child(3) { color: #f39c12; }

        .trust-icons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 20px 15px; text-align: center; }
        .trust-item { font-size: 11px; color: #bdc3c7; }
        .trust-item i { font-size: 24px; color: #f39c12; margin-bottom: 5px; display: block; }

        .review-section { padding: 15px; }
        .review-card { background: #252932; padding: 15px; border-radius: 12px; margin-bottom: 10px; border-left: 4px solid #f39c12; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .review-user { font-weight: bold; font-size: 14px; }
        .review-stars { color: #f1c40f; font-size: 12px; }
        .review-content { font-size: 13px; color: #bdc3c7; font-style: italic; }

        .faq-section { padding: 15px; }
        .faq-item { background: #252932; border-radius: 10px; margin-bottom: 10px; padding: 15px; }
        .faq-q { font-weight: 600; font-size: 15px; color: #f39c12; margin-bottom: 8px; display: flex; gap: 10px; }
        .faq-a { font-size: 13px; color: #bdc3c7; text-align: justify; }

        .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; }
        .nav-item { text-align: center; color: #bdc3c7; font-size: 11px; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 2px; }
        .nav-item.active { color: #f39c12; }

        footer { background: #1a1d24; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323e; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; font-size: 13px; color: #bdc3c7; }
        .footer-links a:hover { color: #f39c12; }
        .copyright { font-size: 12px; color: #7f8c8d; }