* { 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; }
        header { background-color: #1a1d24; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; 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; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #d4af37; }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-reg { border: none; padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; transition: transform 0.2s; }
        .btn-login { background-color: transparent; color: #d4af37; border: 1px solid #d4af37; }
        .btn-reg { background: linear-gradient(135deg, #d4af37 0%, #f9e297 100%); color: #000; }
        .btn-reg:active, .btn-login:active { transform: scale(0.95); }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #1a1d24; padding: 10px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #2d323e; }
        .announcement i { color: #d4af37; }
        .marquee-wrapper { overflow: hidden; white-space: nowrap; flex: 1; }
        .marquee-content { display: inline-block; animation: marquee 20s linear infinite; font-size: 13px; color: #ccc; }
        @keyframes marquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .container { padding: 15px; }
        h2 { font-size: 18px; color: #f1f1f1; margin: 20px 0 15px; border-left: 4px solid #d4af37; padding-left: 10px; display: flex; align-items: center; justify-content: space-between; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; text-decoration: none; color: #fff; border: 1px solid #2d323e; transition: transform 0.2s; }
        .game-card:active { transform: translateY(-5px); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-info p { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
        .platform-intro { background: #1a1d24; border-radius: 15px; padding: 20px; margin: 25px 0; border: 1px solid #2d323e; }
        .platform-intro h1 { font-size: 20px; color: #d4af37; margin-bottom: 15px; }
        .platform-intro p { font-size: 14px; color: #b0b3b8; margin-bottom: 15px; }
        .winning-ticker { background: #1a1d24; border-radius: 12px; padding: 15px; border: 1px solid #2d323e; height: 250px; overflow-y: auto; }
        .win-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #2d323e; font-size: 13px; }
        .win-user { color: #f9e297; }
        .win-amount { color: #4caf50; font-weight: bold; }
        .trust-elements { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 25px 0; text-align: center; }
        .trust-item { background: #1a1d24; padding: 15px 5px; border-radius: 10px; border: 1px solid #2d323e; }
        .trust-item i { font-size: 24px; color: #d4af37; margin-bottom: 8px; }
        .trust-item span { font-size: 11px; display: block; color: #ccc; }
        .reviews { margin: 25px 0; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid #2d323e; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .stars { color: #d4af37; font-size: 12px; }
        .review-user { font-weight: bold; font-size: 14px; }
        .review-text { font-size: 13px; color: #b0b3b8; font-style: italic; }
        .faq-section { margin: 25px 0; }
        .faq-item { background: #1a1d24; border-radius: 10px; padding: 15px; margin-bottom: 10px; border: 1px solid #2d323e; }
        .faq-question { font-weight: 600; font-size: 14px; color: #d4af37; margin-bottom: 8px; display: block; }
        .faq-answer { font-size: 13px; color: #ccc; }
        .navigater { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323e; z-index: 1001; }
        .nav-item { text-decoration: none; text-align: center; color: #b0b3b8; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        .nav-item span { font-size: 11px; }
        .nav-item.active i, .nav-item.active span { color: #d4af37; }
        footer { background: #0f1218; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323e; }
        .footer-row { margin-bottom: 20px; }
        .footer-row a { color: #b0b3b8; text-decoration: none; margin: 0 10px; font-size: 13px; }
        .footer-social a { font-size: 20px; color: #d4af37; }
        .copyright { font-size: 12px; color: #666; }
        ::-webkit-scrollbar { width: 4px; }
        ::-webkit-scrollbar-track { background: #1a1d24; }
        ::-webkit-scrollbar-thumb { background: #d4af37; border-radius: 10px; }