* { margin: 0; padding: 0; box-sizing: border-box; }
        body { 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; }
        img { max-width: 100%; display: block; border-radius: 8px; }
        .container { padding: 0 15px; width: 100%; max-width: 800px; margin: 0 auto; }

        header { background: #1a1d24; border-bottom: 1px solid #2d323e; position: sticky; top: 0; z-index: 1000; height: 60px; display: flex; align-items: center; }
        .header-content { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0 15px; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #ffc107; text-transform: uppercase; letter-spacing: 1px; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn-login { padding: 6px 15px; border: 1px solid #ffc107; color: #ffc107; border-radius: 20px; font-size: 14px; font-weight: 600; }
        .btn-register { padding: 6px 15px; background: linear-gradient(135deg, #ffc107, #ff9800); color: #000; border-radius: 20px; font-size: 14px; font-weight: 600; border: none; }

        .banner { margin-top: 10px; cursor: pointer; border-radius: 12px; overflow: hidden; aspect-ratio: 2/1; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .announcement { background: #252932; margin: 15px 0; padding: 10px; border-radius: 25px; display: flex; align-items: center; gap: 10px; overflow: hidden; border: 1px solid #363b47; }
        .announcement i { color: #ffc107; padding-left: 5px; }
        .marquee-box { overflow: hidden; white-space: nowrap; width: 100%; }
        .marquee-content { display: inline-block; animation: marquee 20s linear infinite; font-size: 13px; color: #bdc3c7; }
        @keyframes marquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }

        .section-title { display: flex; align-items: center; gap: 10px; margin: 20px 0 15px; font-size: 18px; color: #ffc107; border-left: 4px solid #ffc107; padding-left: 10px; }
        .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 img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { font-size: 13px; padding: 8px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: normal; color: #e0e0e0; }

        .intro-text { background: #1a1d24; border-radius: 15px; padding: 20px; margin: 20px 0; border: 1px solid #2d323e; }
        .intro-text h1 { font-size: 20px; color: #ffc107; margin-bottom: 15px; }
        .intro-text p { font-size: 14px; color: #bdc3c7; margin-bottom: 10px; }

        .winning-scroll { background: #1a1d24; border-radius: 15px; padding: 15px; max-height: 250px; overflow-y: auto; border: 1px solid #2d323e; }
        .winning-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #2d323e; font-size: 13px; }
        .winning-item:last-child { border-bottom: none; }
        .user-id { color: #bdc3c7; }
        .win-amount { color: #4caf50; font-weight: bold; }
        .win-game { color: #ffc107; }

        .trust-badges { display: flex; justify-content: space-around; padding: 20px 0; background: #252932; border-radius: 15px; margin: 20px 0; text-align: center; }
        .badge-item i { font-size: 24px; color: #ffc107; display: block; margin-bottom: 5px; }
        .badge-item span { font-size: 11px; color: #bdc3c7; display: block; }

        .review-box { margin: 20px 0; }
        .review-item { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 10px; border-left: 3px solid #ffc107; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .reviewer { font-weight: bold; color: #e0e0e0; font-size: 14px; }
        .stars { color: #ffc107; font-size: 12px; }
        .review-text { font-size: 13px; color: #bdc3c7; font-style: italic; }

        .faq-box { background: #1a1d24; border-radius: 15px; padding: 10px; margin: 20px 0; border: 1px solid #2d323e; }
        .faq-item { border-bottom: 1px solid #2d323e; padding: 12px 5px; }
        .faq-item:last-child { border-bottom: none; }
        .faq-question { font-weight: 600; font-size: 14px; color: #ffc107; margin-bottom: 5px; cursor: pointer; display: flex; align-items: center; gap: 10px; }
        .faq-answer { font-size: 13px; color: #bdc3c7; }

        .navigater { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; align-items: center; height: 65px; border-top: 1px solid #2d323e; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #bdc3c7; transition: color 0.3s; flex: 1; }
        .nav-item i { font-size: 18px; }
        .nav-item span { font-size: 11px; }
        .nav-item:hover, .nav-item.active { color: #ffc107; }

        footer { background: #1a1d24; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323e; }
        .footer-row { margin-bottom: 20px; }
        .footer-title { font-size: 14px; color: #ffc107; margin-bottom: 10px; text-transform: uppercase; }
        .footer-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .footer-links a { font-size: 13px; color: #bdc3c7; }
        .footer-links a:hover { color: #ffc107; }
        .copyright { font-size: 12px; color: #666; margin-top: 20px; }