* { margin: 0; padding: 0; box-sizing: border-box; }
        body { background-color: #0f1217; color: #e0e0e0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        
        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; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #fff; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; color: #d4af37; border: 1px solid #d4af37; }
        .btn-register { background: linear-gradient(135deg, #d4af37, #f9e295); color: #000; }
        
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; background: #1a1d24; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        
        .announcement { background: #1a1d24; padding: 10px 15px; display: flex; align-items: center; gap: 10px; margin: 10px 0; border-radius: 8px; margin: 10px; }
        .announcement i { color: #d4af37; }
        .marquee { overflow: hidden; white-space: nowrap; width: 100%; }
        .marquee p { display: inline-block; padding-left: 100%; animation: scroll-text 15s linear infinite; font-size: 13px; color: #b0b0b0; }
        @keyframes scroll-text { 0% { transform: translate(0, 0); } 100% { transform: translate(-100%, 0); } }
        
        .section-container { padding: 15px; }
        .section-title { font-size: 18px; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; color: #fff; border-left: 4px solid #d4af37; padding-left: 10px; }
        
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; transition: 0.3s; border: 1px solid #2a2e37; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { font-size: 12px; color: #ccc; font-weight: normal; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        
        .intro-box { background: #1a1d24; padding: 20px; border-radius: 12px; margin-bottom: 25px; border: 1px solid #2a2e37; }
        .intro-box h1 { font-size: 20px; color: #d4af37; margin-bottom: 10px; }
        .intro-box p { font-size: 14px; color: #b0b0b0; margin-bottom: 10px; }
        
        .winner-records { background: #1a1d24; border-radius: 12px; padding: 15px; border: 1px solid #2a2e37; height: 300px; overflow-y: auto; margin-bottom: 25px; }
        .winner-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2a2e37; font-size: 13px; }
        .winner-name { color: #d4af37; }
        .winner-amount { color: #4caf50; font-weight: bold; }

        .reviews { margin-bottom: 25px; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 10px; border-left: 3px solid #d4af37; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 5px; font-size: 14px; }
        .stars { color: #ffd700; font-size: 12px; }
        .review-body { font-size: 13px; color: #b0b0b0; font-style: italic; }

        .faq-section { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 25px; }
        .faq-item { margin-bottom: 15px; }
        .faq-question { font-weight: bold; font-size: 14px; color: #d4af37; margin-bottom: 5px; }
        .faq-answer { font-size: 13px; color: #b0b0b0; }

        .features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .feature-item { background: #1a1d24; padding: 15px; border-radius: 12px; text-align: center; border: 1px solid #2a2e37; }
        .feature-item i { font-size: 24px; color: #d4af37; margin-bottom: 10px; }
        .feature-item span { display: block; font-size: 12px; font-weight: bold; }

        .navigater { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; height: 60px; 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; gap: 4px; color: #b0b0b0; font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #d4af37; }

        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; font-size: 13px; color: #666; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 15px; }
        .footer-links a { color: #b0b0b0; }
        .copyright { margin-top: 15px; font-size: 12px; }