* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #121418; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; transition: opacity 0.3s; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header { background-color: #1a1d24; height: 60px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2a2e37; }
        .header-wrap { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0 15px; }
        .brand { display: flex; align-items: center; gap: 10px; }
        .brand img { width: 25px; height: 25px; }
        .brand strong { font-size: 16px; font-weight: normal; color: #ffcc00; }
        .header-btns { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-weight: bold; font-size: 14px; cursor: pointer; border: none; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #ffcc00; }
        .btn-register { background: linear-gradient(180deg, #ffcc00 0%, #d49a00 100%); color: #000000; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .announcement { background: #1a1d24; padding: 10px 0; border-bottom: 1px solid #2a2e37; position: relative; overflow: hidden; }
        .scroll-text { white-space: nowrap; animation: marquee 20s linear infinite; display: inline-block; padding-left: 100%; color: #ffcc00; font-size: 14px; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
        .section-title { padding: 20px 15px 10px; font-size: 18px; color: #ffcc00; display: flex; align-items: center; gap: 8px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; padding: 10px 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2a2e37; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { margin: 20px 15px; padding: 20px; background: linear-gradient(135deg, #1a1d24 0%, #252a34 100%); border-radius: 15px; border-left: 4px solid #ffcc00; }
        .intro-card h1 { font-size: 18px; margin-bottom: 10px; color: #ffcc00; }
        .intro-card p { font-size: 14px; color: #cccccc; }
        .winning-list { margin: 15px; background: #1a1d24; border-radius: 12px; padding: 15px; border: 1px solid #2a2e37; }
        .winning-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2a2e37; font-size: 13px; }
        .winning-item span:first-child { color: #888; }
        .winning-item span:last-child { color: #4caf50; font-weight: bold; }
        .trust-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 20px 15px; text-align: center; }
        .badge-item { background: #1a1d24; padding: 15px 5px; border-radius: 10px; font-size: 12px; border: 1px solid #2a2e37; }
        .badge-item i { font-size: 24px; color: #ffcc00; margin-bottom: 8px; display: block; }
        .review-section { padding: 15px; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #2a2e37; }
        .stars { color: #ffcc00; margin-bottom: 5px; font-size: 12px; }
        .review-user { font-weight: bold; margin-bottom: 5px; font-size: 14px; display: block; }
        .review-text { font-size: 13px; color: #bbbbbb; font-style: italic; }
        .faq-section { padding: 15px; margin-bottom: 20px; }
        .faq-item { margin-bottom: 15px; background: #1a1d24; border-radius: 10px; overflow: hidden; border: 1px solid #2a2e37; }
        .faq-q { padding: 15px; font-weight: bold; font-size: 14px; border-bottom: 1px solid #2a2e37; color: #ffcc00; }
        .faq-a { padding: 15px; font-size: 13px; color: #cccccc; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; height: 60px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2a2e37; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { text-align: center; color: #888; font-size: 11px; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 2px; }
        .nav-item.active { color: #ffcc00; }
        footer { background: #0c0e12; padding: 30px 15px 90px; text-align: center; border-top: 1px solid #2a2e37; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: #888; }
        .footer-copyright { font-size: 12px; color: #555; margin-top: 20px; }
        .stats-banner { background: linear-gradient(90deg, #d49a00, #ffcc00); color: #000; padding: 15px; margin: 15px; border-radius: 12px; display: flex; justify-content: space-around; text-align: center; font-weight: bold; }
        .stats-item span { display: block; font-size: 18px; }
        .stats-item label { font-size: 11px; text-transform: uppercase; }