* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1116; color: #ffffff; line-height: 1.6; overflow-x: hidden; padding-bottom: 70px; }
        header { background: #1a1d24; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .brand { display: flex; align-items: center; gap: 8px; text-decoration: none; color: #fff; }
        .brand img { width: 25px; height: 25px; border-radius: 4px; }
        .brand strong { font-size: 16px; font-weight: normal; }
        .auth-btns { display: flex; gap: 8px; }
        .btn-login, .btn-reg { border: none; padding: 6px 15px; border-radius: 20px; font-weight: 600; cursor: pointer; transition: 0.3s; font-size: 13px; }
        .btn-login { background: transparent; color: #ffc107; border: 1px solid #ffc107; }
        .btn-reg { background: linear-gradient(180deg, #ffdc18 0%, #ff9800 100%); color: #000; }
        .banner { width: 100%; display: block; cursor: pointer; }
        .banner img { width: 100%; aspect-ratio: 2/1; display: block; object-fit: cover; }
        .marquee-box { background: #1a1d24; padding: 8px 15px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #2d323e; }
        .marquee-box i { color: #ffc107; }
        .marquee-content { flex: 1; overflow: hidden; white-space: nowrap; font-size: 13px; color: #ced4da; }
        .marquee-text { display: inline-block; animation: scroll-left 20s linear infinite; }
        @keyframes scroll-left { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .section-container { padding: 15px; }
        .section-title { font-size: 18px; color: #ffc107; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; border-left: 4px solid #ffc107; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1e222d; border-radius: 12px; overflow: hidden; text-decoration: none; display: block; transition: transform 0.2s; border: 1px solid #2d323e; }
        .game-card:active { transform: scale(0.96); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card .info { padding: 10px; text-align: center; }
        .game-card .title { font-size: 13px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
        .intro-card { background: linear-gradient(135deg, #1e222d 0%, #161920 100%); padding: 20px; border-radius: 15px; border: 1px solid #ffc107; margin-bottom: 25px; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
        .intro-card h1 { font-size: 18px; color: #ffc107; margin-bottom: 12px; line-height: 1.4; }
        .intro-card p { font-size: 14px; color: #b0b3b8; text-align: justify; }
        .winning-list { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 25px; border: 1px solid #2d323e; }
        .win-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2d323e; font-size: 12px; }
        .win-item:last-child { border-bottom: none; }
        .win-user { color: #8f94a1; }
        .win-amt { color: #4caf50; font-weight: bold; }
        .features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .feature-box { background: #1e222d; padding: 15px; border-radius: 10px; text-align: center; border: 1px solid #2d323e; }
        .feature-box i { font-size: 24px; color: #ffc107; margin-bottom: 8px; }
        .feature-box h4 { font-size: 14px; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 15px; border-left: 4px solid #ffc107; }
        .review-stars { color: #ffc107; font-size: 12px; margin-bottom: 5px; }
        .review-text { font-size: 13px; font-style: italic; color: #ced4da; }
        .review-user { font-size: 12px; margin-top: 8px; color: #8f94a1; display: block; }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: #1e222d; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 12px 15px; font-weight: 600; font-size: 14px; color: #ffc107; border-bottom: 1px solid #2d323e; display: flex; align-items: center; gap: 8px; }
        .faq-answer { padding: 12px 15px; font-size: 13px; color: #b0b3b8; text-align: justify; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; height: 60px; display: flex; justify-content: space-around; align-items: center; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); z-index: 1000; border-top: 1px solid #2d323e; }
        .nav-item { text-decoration: none; color: #8f94a1; text-align: center; font-size: 11px; flex: 1; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 3px; }
        .nav-item:active { color: #ffc107; }
        footer { background: #0a0c10; padding: 30px 15px 80px; text-align: center; }
        .foot-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .foot-links a { color: #8f94a1; text-decoration: none; font-size: 13px; }
        .foot-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .foot-social a { color: #ffc107; font-size: 20px; }
        .copyright { font-size: 11px; color: #5d636f; border-top: 1px solid #1e222d; padding-top: 15px; }