* { box-sizing: border-box; margin: 0; padding: 0; }
        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; }
        header { background: #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-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #ffd700; }
        .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: transparent; color: #ffffff; border: 1px solid #4a4e58; }
        .btn-reg { background: linear-gradient(180deg, #ffd700, #ff8c00); 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; font-size: 13px; color: #ffd700; border-bottom: 1px solid #2a2e37; }
        .marquee-content { flex: 1; overflow: hidden; white-space: nowrap; }
        .marquee-content span { display: inline-block; animation: scroll 20s linear infinite; }
        @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .section-title { padding: 20px 15px 10px; display: flex; align-items: center; justify-content: space-between; }
        .section-title h2 { font-size: 18px; color: #ffd700; display: flex; align-items: center; gap: 8px; }
        .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 #2a2e37; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .platform-intro { padding: 20px 15px; background: #16191f; margin: 20px 15px; border-radius: 15px; border: 1px dashed #ffd700; }
        .platform-intro h1 { font-size: 20px; margin-bottom: 10px; color: #ffd700; }
        .platform-intro p { font-size: 14px; color: #b0b3b8; margin-bottom: 10px; }
        .winning-box { background: #1a1d24; margin: 0 15px 20px; border-radius: 12px; padding: 15px; max-height: 300px; overflow-y: auto; }
        .winning-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2a2e37; font-size: 13px; }
        .winner-name { color: #ffd700; }
        .winner-amount { color: #00ff00; font-weight: bold; }
        .review-box { padding: 0 15px 20px; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 15px; border-left: 4px solid #ffd700; }
        .review-user { font-weight: bold; margin-bottom: 5px; font-size: 14px; display: flex; align-items: center; gap: 5px; }
        .review-stars { color: #ffd700; font-size: 12px; }
        .review-text { font-size: 13px; color: #b0b3b8; }
        .faq-section { padding: 0 15px 20px; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 10px; padding: 15px; }
        .faq-q { font-weight: 600; color: #ffd700; margin-bottom: 5px; font-size: 14px; }
        .faq-a { font-size: 13px; color: #b0b3b8; }
        .features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0 15px 20px; text-align: center; }
        .feature-item i { font-size: 24px; color: #ffd700; margin-bottom: 8px; }
        .feature-item div { font-size: 12px; }
        .navigater { position: fixed; bottom: 0; left: 0; right: 0; height: 60px; background: #1a1d24; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2a2e37; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 12px; color: #b0b3b8; }
        .nav-item i { font-size: 18px; margin-bottom: 4px; }
        .nav-item:last-child { color: #ffd700; }
        footer { background: #0a0c10; padding: 30px 15px 20px; text-align: center; border-top: 1px solid #1a1d24; }
        .footer-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 15px; font-size: 13px; color: #b0b3b8; }
        .footer-row a:hover { color: #ffd700; }
        .copyright { font-size: 12px; color: #666; margin-top: 10px; }