* { margin: 0; padding: 0; box-sizing: border-box; }
        body { background-color: #0f1116; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; overflow-x: hidden; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        
        header { position: sticky; top: 0; z-index: 1000; background: #1a1d24; border-bottom: 2px solid #d4af37; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; object-fit: contain; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: #d4af37; letter-spacing: 0.5px; }
        .header-btns { display: flex; gap: 8px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: bold; border: none; cursor: pointer; transition: transform 0.2s; }
        .btn-login { background: transparent; border: 1px solid #d4af37; color: #d4af37; }
        .btn-register { background: linear-gradient(135deg, #d4af37, #f1c40f); color: #000; }
        .btn:active { transform: scale(0.95); }

        main { max-width: 100%; margin: 0 auto; }
        .banner-box { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .banner-box img { width: 100%; height: 100%; object-fit: cover; }
        
        .announcement { background: #1f232b; padding: 8px 10px; display: flex; align-items: center; gap: 10px; font-size: 13px; border-bottom: 1px solid #2a2f3a; }
        .announcement i { color: #d4af37; }
        .marquee { overflow: hidden; white-space: nowrap; width: 100%; }
        .marquee p { display: inline-block; animation: scroll 20s linear infinite; padding-left: 100%; }
        @keyframes scroll { 0% { transform: translate(0, 0); } 100% { transform: translate(-100%, 0); } }

        .section-title { padding: 15px 15px 10px; display: flex; align-items: center; gap: 8px; font-size: 18px; color: #d4af37; border-left: 4px solid #d4af37; margin: 15px 0 10px 15px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.3); transition: transform 0.3s; position: relative; border: 1px solid #2a2f3a; }
        .game-card:hover { transform: translateY(-3px); border-color: #d4af37; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 8px; 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(145deg, #1a1d24, #242832); border-radius: 15px; border: 1px solid #d4af37; text-align: center; }
        .intro-card h1 { font-size: 20px; color: #d4af37; margin-bottom: 15px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #ccc; }

        .winning-list { margin: 20px 15px; background: #1a1d24; border-radius: 12px; padding: 15px; border: 1px solid #2a2f3a; height: 300px; overflow-y: auto; }
        .winning-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #2a2f3a; font-size: 13px; }
        .winning-item:last-child { border-bottom: none; }
        .win-user { display: flex; align-items: center; gap: 8px; }
        .win-user i { color: #d4af37; }
        .win-amount { color: #2ecc71; font-weight: bold; }

        .reviews { margin: 20px 15px; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid #2a2f3a; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .review-user { font-weight: bold; color: #d4af37; }
        .stars { color: #f1c40f; font-size: 12px; }
        .review-content { font-size: 13px; color: #bbb; }

        .faq-section { padding: 20px 15px; background: #16191f; }
        .faq-item { margin-bottom: 20px; }
        .faq-item h3 { font-size: 16px; color: #d4af37; margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: #ccc; text-align: justify; }

        .trust-badges { display: flex; justify-content: center; gap: 20px; padding: 20px 15px; flex-wrap: wrap; opacity: 0.7; }
        .trust-badges i { font-size: 24px; color: #d4af37; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #d4af37; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #bbb; font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #d4af37; }

        footer { background: #0b0d11; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2a2f3a; }
        .footer-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 20px; }
        .footer-links a { font-size: 14px; color: #888; transition: color 0.2s; }
        .footer-links a:hover { color: #d4af37; }
        .footer-copy { font-size: 12px; color: #555; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .footer-social a { color: #888; font-size: 18px; }