* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0f1218; color: #ffffff; 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; }
        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); border-bottom: 1px solid #d4af37; }
        .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: #f0c27b; text-transform: uppercase; letter-spacing: 1px; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; color: #f0c27b; border: 1px solid #f0c27b; }
        .btn-register { background: linear-gradient(135deg, #f0c27b 0%, #ab8032 100%); color: #1a1d24; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #242831; padding: 8px 15px; display: flex; align-items: center; gap: 10px; font-size: 13px; border-bottom: 1px solid #333; }
        .announcement i { color: #f0c27b; }
        .scrolling-text { white-space: nowrap; overflow: hidden; position: relative; flex: 1; }
        .scrolling-text 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: #f0c27b; 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 #2a2e38; transition: 0.3s; }
        .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; color: #e0e0e0; }
        .platform-intro { padding: 20px 15px; background: #15181e; margin: 15px 0; }
        .platform-intro h1 { font-size: 20px; color: #f0c27b; margin-bottom: 10px; }
        .platform-intro p { font-size: 14px; color: #a0a0a0; margin-bottom: 10px; }
        .winning-records { background: #1a1d24; margin: 0 15px 20px; border-radius: 12px; padding: 15px; border: 1px solid #2a2e38; }
        .winning-records h3 { font-size: 16px; margin-bottom: 12px; color: #f0c27b; border-bottom: 1px solid #2a2e38; padding-bottom: 8px; }
        .record-list { height: 200px; overflow-y: auto; scrollbar-width: none; }
        .record-item { display: flex; justify-content: space-between; font-size: 12px; padding: 6px 0; border-bottom: 1px dashed #333; }
        .record-item span:last-child { color: #4caf50; font-weight: bold; }
        .features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0 15px 20px; text-align: center; }
        .feature-item { background: #1a1d24; padding: 15px 5px; border-radius: 10px; border: 1px solid #2a2e38; }
        .feature-item i { font-size: 24px; color: #f0c27b; margin-bottom: 8px; }
        .feature-item p { font-size: 11px; font-weight: 600; }
        .reviews { padding: 0 15px 20px; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 4px solid #f0c27b; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 14px; }
        .review-header .stars { color: #f0c27b; }
        .review-text { font-size: 13px; color: #b0b0b0; font-style: italic; }
        .faq { padding: 0 15px 20px; }
        .faq-item { background: #1a1d24; border-radius: 8px; margin-bottom: 10px; padding: 12px; border: 1px solid #2a2e38; }
        .faq-item h3 { font-size: 14px; color: #f0c27b; margin-bottom: 5px; }
        .faq-item p { font-size: 13px; color: #a0a0a0; }
        .navigater { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: #1a1d24; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #d4af37; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: #a0a0a0; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #f0c27b; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #1a1d24; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: #a0a0a0; }
        .footer-bottom { font-size: 12px; color: #666; }