* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1218; color: #ffffff; line-height: 1.6; overflow-x: hidden; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background: #1a1d24; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid #d4af37; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #d4af37; }
        .header-btns { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; border: none; cursor: pointer; transition: 0.3s; }
        .btn-login { background: transparent; color: #d4af37; border: 1px solid #d4af37; }
        .btn-register { background: linear-gradient(135deg, #d4af37, #f9e29c); color: #000; }
        .banner { width: 100%; display: block; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #242832; padding: 8px 15px; display: flex; align-items: center; gap: 10px; font-size: 13px; color: #f9e29c; border-bottom: 1px solid #333; }
        .announcement i { color: #d4af37; }
        .scrolling-text { white-space: nowrap; overflow: hidden; position: relative; width: 100%; }
        .scrolling-text p { display: inline-block; padding-left: 100%; animation: marquee 20s linear infinite; }
        @keyframes marquee { 0% { transform: translate(0, 0); } 100% { transform: translate(-100%, 0); } }
        .section-title { padding: 20px 15px 10px; font-size: 18px; color: #d4af37; display: flex; align-items: center; gap: 10px; border-left: 4px solid #d4af37; margin: 15px 0; background: rgba(212, 175, 55, 0.05); }
        .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 #333; transition: transform 0.2s; box-shadow: 0 4px 6px rgba(0,0,0,0.3); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; font-size: 13px; color: #eee; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { margin: 20px 15px; padding: 20px; background: linear-gradient(135deg, #1a1d24, #2c313c); border-radius: 15px; border: 1px solid #d4af37; box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
        .intro-card h1 { font-size: 18px; color: #d4af37; margin-bottom: 12px; line-height: 1.4; }
        .intro-card p { font-size: 14px; color: #ccc; }
        .winning-list { margin: 20px 15px; background: #1a1d24; border-radius: 15px; padding: 15px; border: 1px solid #333; max-height: 300px; overflow-y: auto; }
        .winner-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #222; font-size: 13px; }
        .winner-item span:first-child { color: #f9e29c; }
        .winner-item span:last-child { color: #4caf50; font-weight: bold; }
        .reviews-section { padding: 0 15px; margin: 20px 0; }
        .review-card { background: #242832; padding: 15px; border-radius: 12px; margin-bottom: 10px; border-left: 3px solid #d4af37; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 5px; }
        .username { color: #d4af37; font-weight: bold; font-size: 14px; }
        .stars { color: #ffc107; font-size: 12px; }
        .review-text { font-size: 13px; color: #bbb; font-style: italic; }
        .faq-section { padding: 0 15px; margin: 20px 0; }
        .faq-item { background: #1a1d24; margin-bottom: 10px; border-radius: 8px; border: 1px solid #333; overflow: hidden; }
        .faq-item h3 { padding: 12px 15px; font-size: 15px; color: #d4af37; background: #242832; }
        .faq-item p { padding: 12px 15px; font-size: 14px; color: #bbb; line-height: 1.5; }
        .navigator { position: fixed; bottom: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #d4af37; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: #ccc; }
        .nav-item i { font-size: 18px; margin-bottom: 3px; color: #d4af37; }
        footer { background: #1a1d24; padding: 30px 15px 100px; text-align: center; font-size: 13px; color: #888; border-top: 1px solid #333; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 15px; }
        .footer-links a { color: #ccc; transition: 0.3s; }
        .footer-links a:hover { color: #d4af37; }
        .trust-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; font-size: 24px; color: #555; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            body { max-width: 600px; margin: 0 auto; box-shadow: 0 0 20px rgba(0,0,0,0.5); }
        }