* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1217; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        
        header { background: #1a1d24; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .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: #d4af37; letter-spacing: 1px; }
        .header-right { display: flex; gap: 10px; }
        .btn-login { background: transparent; color: #d4af37; border: 1px solid #d4af37; padding: 6px 15px; border-radius: 20px; font-size: 14px; cursor: pointer; }
        .btn-register { background: linear-gradient(135deg, #d4af37, #f9e297); color: #000; border: none; padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; }

        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .announcement { background: #242832; padding: 8px 15px; display: flex; align-items: center; gap: 10px; font-size: 14px; border-bottom: 1px solid #333; }
        .announcement i { color: #d4af37; }
        .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%); } }

        main { padding: 15px; max-width: 1200px; margin: 0 auto; }
        h1 { font-size: 20px; color: #d4af37; margin: 20px 0 10px; text-align: center; }
        h2 { font-size: 18px; color: #d4af37; margin: 25px 0 15px; padding-left: 10px; border-left: 3px solid #d4af37; }
        
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 20px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.3); 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-card .title { padding: 8px; font-size: 13px; text-align: center; background: #242832; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .intro-section { background: #1a1d24; border-radius: 12px; padding: 20px; margin: 20px 0; border: 1px solid #2c313c; }
        .intro-section p { font-size: 14px; color: #ccc; margin-bottom: 15px; }

        .winning-list { background: #1a1d24; 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 #2c313c; font-size: 13px; }
        .winning-item span:first-child { color: #d4af37; }
        .winning-item span:last-child { color: #4caf50; font-weight: bold; }

        .trust-badge { display: flex; justify-content: space-around; padding: 20px 0; text-align: center; }
        .trust-badge div { flex: 1; font-size: 12px; }
        .trust-badge i { font-size: 24px; color: #d4af37; display: block; margin-bottom: 5px; }

        .reviews { margin: 25px 0; }
        .review-card { background: #242832; padding: 15px; border-radius: 12px; margin-bottom: 10px; border: 1px solid #2c313c; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 5px; }
        .review-name { font-weight: bold; color: #d4af37; }
        .stars { color: #ffc107; font-size: 12px; }
        .review-text { font-size: 13px; font-style: italic; color: #bbb; }

        .faq-section { margin: 25px 0; }
        details { background: #1a1d24; border-radius: 8px; margin-bottom: 8px; border: 1px solid #2c313c; }
        summary { padding: 15px; cursor: pointer; font-weight: bold; font-size: 14px; list-style: none; position: relative; }
        summary::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: 15px; transition: 0.3s; }
        details[open] summary::after { transform: rotate(180deg); }
        .faq-content { padding: 0 15px 15px; font-size: 14px; color: #ccc; }

        .navigater { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #d4af37; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 12px; color: #aaa; }
        .nav-item i { font-size: 20px; margin-bottom: 3px; }
        .nav-item.active { color: #d4af37; }

        footer { background: #0a0c10; padding: 30px 15px 20px; text-align: center; color: #777; font-size: 13px; }
        .footer-row { display: flex; justify-content: center; gap: 15px; margin-bottom: 15px; flex-wrap: wrap; }
        .footer-row a { color: #aaa; }
        .footer-row a:hover { color: #d4af37; }
        .copyright { margin-top: 20px; padding-top: 15px; border-top: 1px solid #222; }