* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0f1218; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; padding-bottom: 70px; }
        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; border-bottom: 1px solid #2d323e; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #d4af37; letter-spacing: 0.5px; }
        .header-right { display: flex; gap: 8px; }
        .btn-login { background: transparent; border: 1px solid #d4af37; color: #d4af37; padding: 6px 14px; border-radius: 20px; font-size: 14px; cursor: pointer; }
        .btn-register { background: linear-gradient(135deg, #d4af37, #f1c40f); border: none; color: #000; padding: 6px 14px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
        .announcement { background: #1a1d24; padding: 8px 15px; display: flex; align-items: center; gap: 10px; font-size: 13px; color: #aaa; overflow: hidden; }
        .announcement i { color: #d4af37; }
        .marquee { white-space: nowrap; overflow: hidden; position: relative; width: 100%; }
        .marquee p { display: inline-block; padding-left: 100%; animation: marquee 20s linear infinite; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
        .section-container { padding: 15px; }
        .section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; border-left: 4px solid #d4af37; padding-left: 10px; }
        .section-header h2 { font-size: 18px; color: #fff; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; transition: transform 0.2s; border: 1px solid #2d323e; }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; height: auto; display: block; }
        .game-card .game-info { padding: 8px; text-align: center; }
        .game-card .game-info span { font-size: 13px; color: #eee; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
        .intro-box { background: #1a1d24; padding: 20px; border-radius: 12px; margin: 15px; border: 1px solid #2d323e; }
        .intro-box h1 { font-size: 20px; color: #d4af37; margin-bottom: 10px; }
        .intro-box p { font-size: 14px; color: #ccc; margin-bottom: 15px; }
        .winners-scroll { background: #1a1d24; border-radius: 12px; padding: 10px; height: 200px; overflow-y: auto; margin: 15px; border: 1px solid #2d323e; }
        .winner-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2d323e; font-size: 13px; }
        .winner-item:last-child { border-bottom: none; }
        .winner-name { color: #aaa; }
        .winner-amount { color: #2ecc71; font-weight: bold; }
        .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 15px; }
        .feature-item { background: #1a1d24; padding: 15px 5px; border-radius: 10px; text-align: center; border: 1px solid #2d323e; }
        .feature-item i { font-size: 24px; color: #d4af37; margin-bottom: 8px; }
        .feature-item span { display: block; font-size: 11px; color: #fff; }
        .reviews-container { padding: 15px; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 10px; border: 1px solid #2d323e; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .review-user { font-weight: bold; font-size: 14px; color: #d4af37; }
        .review-stars { color: #f1c40f; font-size: 12px; }
        .review-text { font-size: 13px; color: #bbb; font-style: italic; }
        .faq-container { padding: 15px; }
        .faq-item { background: #1a1d24; border-radius: 8px; margin-bottom: 8px; overflow: hidden; border: 1px solid #2d323e; }
        .faq-question { padding: 12px 15px; font-weight: bold; font-size: 14px; color: #fff; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 12px; font-size: 13px; color: #aaa; }
        .navigater { 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 { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #aaa; font-size: 11px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #d4af37; }
        footer { background: #1a1d24; padding: 30px 15px 20px; text-align: center; border-top: 1px solid #2d323e; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: #aaa; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .footer-social a { color: #d4af37; font-size: 20px; }
        .copyright { font-size: 12px; color: #666; margin-top: 20px; }