* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0f1116; color: #e0e0e0; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; 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; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #ffffff; }
        .header-right { display: flex; gap: 10px; }
        .btn-login { background: transparent; border: 1px solid #fbbf24; color: #fbbf24; padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; }
        .btn-register { background: linear-gradient(135deg, #fbbf24, #d97706); border: none; color: #000; padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #1a1d24; padding: 8px 15px; display: flex; align-items: center; gap: 10px; font-size: 13px; color: #fbbf24; }
        .announcement i { font-size: 16px; }
        .scrolling-text { white-space: nowrap; overflow: hidden; width: 100%; position: relative; }
        .scrolling-text p { display: inline-block; animation: scroll-left 20s linear infinite; }
        @keyframes scroll-left { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .section-title { padding: 20px 15px 10px; display: flex; align-items: center; gap: 8px; }
        .section-title h2 { font-size: 18px; font-weight: 600; color: #ffffff; border-left: 4px solid #fbbf24; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2a2e37; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.96); }
        .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; color: #e0e0e0; }
        .intro-card { margin: 25px 15px; background: linear-gradient(145deg, #1e222b, #15181f); border-radius: 16px; padding: 20px; border: 1px solid #2a2e37; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
        .intro-card h1 { font-size: 20px; color: #fbbf24; margin-bottom: 12px; line-height: 1.4; }
        .intro-card p { font-size: 14px; color: #a0a0a0; }
        .winning-records { margin: 20px 15px; background: #1a1d24; border-radius: 12px; padding: 15px; border: 1px solid #2a2e37; }
        .winning-list { height: 200px; overflow-y: hidden; position: relative; }
        .winning-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #252932; font-size: 12px; }
        .winning-item span:first-child { color: #fbbf24; }
        .winning-item span:last-child { color: #10b981; font-weight: bold; }
        .trust-elements { display: flex; justify-content: space-around; padding: 20px 15px; text-align: center; background: #1a1d24; margin: 20px 0; }
        .trust-item i { font-size: 24px; color: #fbbf24; margin-bottom: 8px; display: block; }
        .trust-item span { font-size: 12px; color: #e0e0e0; }
        .reviews-section { padding: 0 15px; margin: 20px 0; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid #2a2e37; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .review-user { font-weight: 600; font-size: 14px; color: #fbbf24; }
        .review-rating { color: #fbbf24; font-size: 12px; }
        .review-content { font-size: 13px; color: #a0a0a0; font-style: italic; }
        .faq-section { padding: 0 15px; margin: 30px 0; }
        .faq-item { margin-bottom: 15px; background: #1a1d24; border-radius: 12px; border: 1px solid #2a2e37; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; color: #ffffff; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: #a0a0a0; line-height: 1.6; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2a2e37; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #a0a0a0; font-size: 12px; flex: 1; }
        .nav-item i { font-size: 18px; }
        .nav-item:nth-child(3) i { background: #fbbf24; color: #000; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin-top: -20px; border: 4px solid #0f1116; }
        footer { padding: 30px 15px 80px; background: #0a0c10; text-align: center; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; font-size: 13px; }
        .footer-links a { color: #a0a0a0; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .footer-social a { font-size: 20px; color: #fbbf24; }
        .copyright { font-size: 11px; color: #666; }