* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0f1217; color: #e0e6ed; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.5; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        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 #2d323d; }
        .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: #fff; }
        .header-right { display: flex; gap: 10px; }
        .btn-login { background-color: transparent; color: #e0e6ed; border: 1px solid #4a5568; padding: 6px 15px; border-radius: 20px; font-size: 14px; cursor: pointer; }
        .btn-register { background: linear-gradient(135deg, #f6d365 0%, #fda085 100%); color: #1a1d24; border: none; padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; }
        .banner { width: 100%; aspect-ratio: 2 / 1; display: block; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #1e222b; padding: 8px 15px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #2d323d; }
        .announcement i { color: #f6d365; }
        .marquee { overflow: hidden; white-space: nowrap; flex: 1; font-size: 13px; color: #a0aec0; }
        .marquee-inner { display: inline-block; animation: marquee 20s linear infinite; }
        @keyframes marquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .section-title { padding: 20px 15px 10px; font-size: 18px; font-weight: bold; display: flex; align-items: center; gap: 8px; }
        .section-title i { color: #f6d365; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px 20px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323d; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.97); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: #1a1d24; margin: 15px; padding: 20px; border-radius: 16px; border: 1px solid #2d323d; }
        .intro-card h1 { font-size: 18px; color: #f6d365; margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #a0aec0; line-height: 1.6; }
        .trust-badges { display: flex; justify-content: space-around; padding: 10px 15px; background: #16191f; border-radius: 12px; margin: 0 15px 20px; }
        .trust-item { text-align: center; font-size: 11px; color: #718096; }
        .trust-item i { display: block; font-size: 20px; color: #f6d365; margin-bottom: 5px; }
        .winners-list { background: #1a1d24; margin: 0 15px 20px; border-radius: 16px; overflow: hidden; border: 1px solid #2d323d; }
        .winner-row { display: flex; justify-content: space-between; padding: 10px 15px; border-bottom: 1px solid #2d323d; font-size: 13px; }
        .winner-row:last-child { border-bottom: none; }
        .winner-name { color: #e0e6ed; }
        .winner-amount { color: #48bb78; font-weight: bold; }
        .reviews { padding: 0 15px 20px; }
        .review-card { background: #1e222b; padding: 15px; border-radius: 12px; margin-bottom: 10px; border-left: 4px solid #f6d365; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 13px; }
        .stars { color: #f6d365; }
        .review-body { font-size: 13px; color: #a0aec0; font-style: italic; }
        .faq-section { padding: 0 15px 20px; }
        .faq-item { background: #1a1d24; border-radius: 12px; margin-bottom: 10px; padding: 15px; border: 1px solid #2d323d; }
        .faq-q { font-weight: bold; font-size: 15px; color: #f6d365; margin-bottom: 8px; display: block; }
        .faq-a { font-size: 14px; color: #a0aec0; line-height: 1.6; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2d323d; z-index: 1000; padding-bottom: env(safe-area-inset-bottom); }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #718096; font-size: 11px; gap: 4px; }
        .nav-item i { font-size: 20px; }
        footer { background: #121417; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323d; }
        .foot-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; font-size: 13px; color: #718096; }
        .foot-links a:hover { color: #f6d365; }
        .copyright { font-size: 12px; color: #4a5568; border-top: 1px solid #2d323d; padding-top: 20px; }