* { 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; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        header { background: #111419; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; }
        .logo-container { display: flex; align-items: center; gap: 8px; }
        .logo-container img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-container strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .header-btns { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-weight: bold; border: none; cursor: pointer; font-size: 14px; }
        .btn-login { background: transparent; color: #FFD700; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35, #FF2E63); color: white; }
        .banner { width: 100%; aspect-ratio: 2 / 1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: #252932; margin: 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #FFD700; }
        .jackpot-title { color: #FFD700; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
        .jackpot-amount { font-size: 28px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(255,215,0,0.5); }
        .intro-card { margin: 15px; padding: 20px; background: #252932; border-radius: 15px; }
        .intro-card h1 { font-size: 20px; color: #FFD700; margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #ccc; }
        .section-title { margin: 20px 15px 10px; font-size: 18px; color: #FFD700; display: flex; align-items: center; gap: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #252932; border-radius: 12px; overflow: hidden; transition: transform 0.2s; position: relative; }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; font-weight: bold; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 2px; }
        .game-provider { font-size: 11px; color: #888; text-transform: uppercase; }
        .trust-section { background: #252932; margin: 20px 15px; padding: 20px; border-radius: 15px; }
        .trust-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; justify-items: center; opacity: 0.8; }
        .trust-icons i { font-size: 24px; color: #FFD700; }
        .guidelines { padding: 0 15px; margin-bottom: 20px; }
        .guide-item { background: #252932; padding: 15px; border-radius: 12px; margin-bottom: 10px; }
        .guide-item h2 { font-size: 16px; color: #FFD700; margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: #bbb; }
        .marquee-container { background: #111419; margin: 20px 0; padding: 15px 0; overflow: hidden; position: relative; }
        .marquee-content { display: flex; animation: scroll 40s linear infinite; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .win-log { flex-shrink: 0; background: #252932; padding: 10px 20px; margin: 0 10px; border-radius: 30px; border-left: 3px solid #FFD700; display: flex; gap: 10px; align-items: center; white-space: nowrap; }
        .win-user { color: #FFD700; font-weight: bold; }
        .win-amount { color: #4caf50; font-weight: bold; }
        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; padding: 0 15px; margin-bottom: 20px; opacity: 0.7; }
        .provider-tag { background: #333; padding: 5px 12px; border-radius: 4px; font-size: 12px; font-weight: bold; }
        .reviews-section { padding: 0 15px; margin-bottom: 20px; }
        .review-card { background: #252932; padding: 15px; border-radius: 12px; margin-bottom: 12px; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .user-meta { display: flex; align-items: center; gap: 8px; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #777; }
        .faq-section { padding: 0 15px; margin-bottom: 20px; }
        .faq-item { background: #252932; border-radius: 10px; margin-bottom: 8px; padding: 15px; }
        .faq-item h2 { font-size: 15px; color: #FFD700; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #bbb; }
        .safety-section { margin: 20px 15px; padding: 20px; background: #252932; border-radius: 15px; text-align: center; }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #FFD700; }
        .safety-text { font-size: 12px; color: #888; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #111419; 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; gap: 4px; color: #888; font-size: 11px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #FFD700; }
        footer { background: #111419; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #333; }
        .footer-contact { margin-bottom: 20px; display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .footer-contact a { font-size: 14px; color: #FFD700; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; }
        .footer-links a { font-size: 12px; color: #888; }
        .copyright { font-size: 11px; color: #555; border-top: 1px solid #222; pt: 20px; }