* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #1a1d24; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; overflow-x: hidden; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 800px; margin: 0 auto; padding: 0 15px; }
        
        header { background: #121418; padding: 10px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .header-wrap { display: flex; justify-content: space-between; align-items: center; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .auth-btns { display: flex; gap: 10px; }
        .btn { padding: 8px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; border: none; cursor: pointer; transition: opacity 0.3s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #FFD700; }
        .btn-reg { background: linear-gradient(90deg, #FF6B35, #FF2E63); color: #ffffff; }

        .banner { width: 100%; aspect-ratio: 2 / 1; overflow: hidden; margin-bottom: 20px; cursor: pointer; }
        
        .jackpot-sec { background: #252a34; border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 25px; border: 1px solid #FFD700; }
        .jackpot-title { color: #FFD700; font-size: 18px; margin-bottom: 10px; font-weight: bold; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); font-family: monospace; }

        .platform-card { background: #252a34; padding: 25px; border-radius: 15px; margin-bottom: 30px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.5); border-left: 4px solid #FFD700; }
        .platform-card h1 { font-size: 22px; color: #FFD700; margin-bottom: 15px; line-height: 1.3; }
        .platform-card p { font-size: 15px; color: #cccccc; }

        .section-title { font-size: 20px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; color: #FFD700; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 30px; }
        .game-card { background: #252a34; border-radius: 12px; overflow: hidden; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-img-box { aspect-ratio: 1 / 1; width: 100%; background: #121418; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 12px; color: #888; }

        .trust-sec { background: #121418; padding: 20px; border-radius: 15px; margin-bottom: 30px; }
        .trust-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; opacity: 0.7; }
        .trust-icons i { font-size: 30px; }

        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .guide-box { background: #252a34; padding: 20px; border-radius: 12px; }
        .guide-box h2 { font-size: 18px; margin-bottom: 10px; color: #FFD700; }
        .guide-box p { font-size: 14px; color: #bbb; }

        .winners-marquee { background: #121418; padding: 15px; border-radius: 10px; height: 120px; overflow: hidden; margin-bottom: 30px; position: relative; }
        .marquee-content { animation: scroll-up 20s linear infinite; }
        @keyframes scroll-up { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .winner-item { padding: 8px 0; border-bottom: 1px solid #333; font-size: 13px; display: flex; justify-content: space-between; }
        .win-amt { color: #00ff00; font-weight: bold; }

        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .review-card { background: #252a34; padding: 20px; border-radius: 15px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: #FFD700; }
        .review-name { font-weight: bold; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #888; }

        .faq-sec { margin-bottom: 30px; }
        .faq-item { background: #252a34; border-radius: 10px; padding: 15px; margin-bottom: 10px; }
        .faq-item h2 { font-size: 16px; margin-bottom: 8px; color: #FFD700; }
        .faq-item p { font-size: 14px; color: #bbb; }

        .security-sec { background: #121418; padding: 20px; border-radius: 15px; text-align: center; margin-bottom: 40px; border: 1px dashed #444; }
        .security-sec h2 { font-size: 18px; margin-bottom: 15px; }
        .age-limit { display: inline-block; border: 2px solid #ff0000; color: #ff0000; font-weight: bold; padding: 5px 10px; border-radius: 50%; margin-bottom: 15px; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #121418; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 12px; color: #888; gap: 4px; }
        .nav-item i { font-size: 18px; }

        footer { background: #121418; padding: 40px 0 100px; font-size: 14px; color: #888; text-align: center; }
        .foot-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; flex-wrap: wrap; }
        .foot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .copy-text { padding: 20px 15px; font-size: 12px; }