* { margin: 0; padding: 0; box-sizing: border-box; }
        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-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 #2a2e37; }
        .logo-container { display: flex; align-items: center; gap: 8px; }
        .logo-container img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-container strong { font-size: 16px; font-weight: normal; color: #f3ba2f; }
        .header-btns { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; }
        .btn-login { background-color: transparent; color: #f3ba2f; border: 1px solid #f3ba2f; }
        .btn-register { background-color: #f3ba2f; color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #1a1d24; padding: 10px; display: flex; align-items: center; gap: 10px; font-size: 13px; color: #f3ba2f; border-bottom: 1px solid #2a2e37; }
        .announcement i { font-size: 16px; }
        .scrolling-text { white-space: nowrap; overflow: hidden; position: relative; width: 100%; }
        .scrolling-text p { display: inline-block; padding-left: 100%; animation: scroll 20s linear infinite; }
        @keyframes scroll { 0% { transform: translate(0, 0); } 100% { transform: translate(-100%, 0); } }
        .section-title { padding: 20px 15px 10px; font-size: 18px; color: #f3ba2f; display: flex; align-items: center; gap: 8px; }
        .section-title::before { content: ""; width: 4px; height: 18px; background: #f3ba2f; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 10px 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2a2e37; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { margin: 20px 15px; padding: 20px; background: linear-gradient(135deg, #1a1d24 0%, #252a34 100%); border-radius: 15px; border-left: 4px solid #f3ba2f; }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; color: #f3ba2f; }
        .intro-card p { font-size: 14px; color: #b0b3b8; }
        .trust-badges { display: flex; justify-content: space-around; padding: 20px 15px; background: #1a1d24; margin: 20px 0; }
        .badge-item { text-align: center; font-size: 11px; color: #b0b3b8; }
        .badge-item i { display: block; font-size: 24px; color: #f3ba2f; margin-bottom: 5px; }
        .winning-list { margin: 15px; background: #1a1d24; border-radius: 12px; height: 250px; overflow-y: auto; padding: 10px; border: 1px solid #2a2e37; }
        .winning-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2a2e37; font-size: 12px; }
        .winner-name { color: #f3ba2f; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .reviews { padding: 10px 15px; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 10px; border: 1px solid #2a2e37; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .review-user { font-weight: 600; font-size: 14px; color: #f3ba2f; }
        .review-stars { color: #f3ba2f; font-size: 12px; }
        .review-text { font-size: 13px; color: #b0b3b8; font-style: italic; }
        .faq-section { padding: 10px 15px; }
        .faq-item { background: #1a1d24; margin-bottom: 8px; border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 15px; color: #f3ba2f; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #b0b3b8; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: #1a1d24; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2a2e37; z-index: 1000; }
        .nav-item { text-align: center; color: #b0b3b8; font-size: 11px; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: #f3ba2f; }
        footer { background: #0f1218; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2a2e37; }
        .footer-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 15px; }
        .footer-links a { font-size: 13px; color: #b0b3b8; }
        .footer-copy { font-size: 12px; color: #666; margin-top: 15px; }