* { 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; }
        ul { list-style: none; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header { background: #111317; height: 60px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2a2e38; }
        .header-content { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0 15px; }
        .logo-area { display: flex; align-items: center; gap: 10px; }
        .logo-area img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-weight: 600; font-size: 14px; border: none; cursor: pointer; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(45deg, #FF6B35, #FF2E63); color: #ffffff; }
        .btn:active { transform: scale(0.95); }
        .banner { width: 100%; aspect-ratio: 2/1; display: block; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: #242831; margin: 20px 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #FFD700; box-shadow: 0 0 15px rgba(255, 215, 0, 0.2); }
        .jackpot-label { color: #FFD700; font-size: 18px; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; margin-top: 10px; font-family: monospace; }
        .intro-card { background: #242831; margin: 20px 15px; padding: 25px; border-radius: 15px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 22px; color: #FFD700; margin-bottom: 15px; }
        .section-title { font-size: 20px; margin: 25px 15px 15px; display: flex; align-items: center; gap: 10px; color: #FFD700; }
        .section-title::before { content: ""; width: 4px; height: 20px; background: #FFD700; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #242831; border-radius: 12px; overflow: hidden; position: relative; transition: 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; border-bottom: 1px solid #2a2e38; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; color: #ffffff; }
        .game-provider { font-size: 11px; color: #8a909d; }
        .trust-section { background: #242831; margin: 25px 15px; padding: 20px; border-radius: 15px; text-align: center; }
        .trust-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 15px; opacity: 0.8; }
        .trust-icons i { font-size: 30px; color: #8a909d; }
        .content-block { margin: 25px 15px; }
        .content-block h2 { font-size: 18px; color: #FFD700; margin-bottom: 12px; }
        .content-block p { font-size: 14px; color: #d1d5db; margin-bottom: 15px; }
        .winners-marquee { background: #111317; height: 40px; margin: 20px 0; overflow: hidden; position: relative; display: flex; align-items: center; }
        .marquee-content { display: flex; white-space: nowrap; animation: marquee 30s linear infinite; gap: 40px; }
        @keyframes marquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .winner-item { font-size: 13px; color: #FFD700; }
        .winner-item span { color: #ffffff; margin: 0 5px; }
        .provider-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; padding: 15px; background: #242831; margin: 15px; border-radius: 15px; }
        .provider-item { font-weight: bold; color: #8a909d; font-size: 14px; }
        .review-card { background: #242831; margin: 15px; padding: 20px; border-radius: 15px; }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
        .review-header i { font-size: 24px; color: #FFD700; }
        .review-meta h4 { font-size: 15px; margin-bottom: 2px; }
        .review-stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #8a909d; float: right; }
        .faq-section { margin: 25px 15px; }
        .faq-item { background: #242831; border-radius: 10px; margin-bottom: 10px; padding: 15px; }
        .faq-item h3 { font-size: 16px; color: #FFD700; margin-bottom: 10px; display: flex; gap: 8px; }
        .faq-item p { font-size: 14px; color: #d1d5db; }
        .security-section { text-align: center; padding: 30px 15px; background: #111317; border-top: 1px solid #2a2e38; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; font-size: 24px; color: #FFD700; }
        .security-text { font-size: 12px; color: #8a909d; max-width: 600px; margin: 0 auto; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #111317; height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2a2e38; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 12px; color: #8a909d; }
        .nav-item i { font-size: 20px; }
        .nav-item:nth-child(3) i { color: #FFD700; font-size: 26px; margin-top: -10px; }
        footer { background: #0b0d10; padding: 40px 15px 100px; border-top: 1px solid #2a2e38; }
        .footer-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-contact a { color: #FFD700; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 40px; }
        .footer-links a { font-size: 13px; color: #8a909d; text-align: center; }
        .copyright { text-align: center; font-size: 12px; color: #666; border-top: 1px solid #2a2e38; padding-top: 20px; }