* { 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 { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header { background: #111418; padding: 10px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .header-flex { 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; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .header-btns { display: flex; gap: 10px; }
        .btn { padding: 8px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; border: none; cursor: pointer; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #FFD700; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35, #FF2E63); color: white; }
        .btn:active { transform: scale(0.95); }
        .banner { width: 100%; display: block; aspect-ratio: 2/1; object-fit: cover; cursor: pointer; border-radius: 0 0 15px 15px; }
        .jackpot-section { background: #111418; margin: 20px 15px; padding: 20px; border-radius: 15px; border: 2px solid #FFD700; text-align: center; box-shadow: 0 0 15px rgba(255, 215, 0, 0.3); }
        .jackpot-title { color: #FFD700; font-size: 18px; text-transform: uppercase; margin-bottom: 10px; font-weight: bold; }
        .jackpot-amount { font-size: 32px; font-weight: 800; background: linear-gradient(to bottom, #FFD700, #FFA500); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-family: monospace; }
        .intro-card { background: #252a34; margin: 20px 15px; padding: 20px; border-radius: 15px; border-left: 5px solid #FFD700; }
        .intro-card h1 { font-size: 20px; color: #FFD700; margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: #ccc; }
        .section-header { display: flex; align-items: center; gap: 10px; margin: 25px 15px 15px; }
        .section-header i { color: #FFD700; font-size: 20px; }
        .section-header h2 { font-size: 18px; text-transform: uppercase; letter-spacing: 1px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; padding: 0 15px; }
        .game-card { background: #252a34; border-radius: 12px; overflow: hidden; transition: 0.3s; position: relative; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 11px; color: #888; display: block; }
        .payment-methods { background: #111418; margin: 30px 0; padding: 20px 15px; overflow-x: auto; white-space: nowrap; display: flex; gap: 20px; justify-content: center; align-items: center; }
        .payment-methods i { font-size: 30px; color: #555; }
        .trust-badge { height: 40px; filter: grayscale(1); opacity: 0.6; }
        .guidelines { padding: 0 15px; margin-top: 30px; }
        .guide-item { background: #252a34; padding: 15px; border-radius: 12px; margin-bottom: 15px; }
        .guide-item h3 { color: #FFD700; font-size: 16px; margin-bottom: 8px; }
        .winners-marquee { background: #111418; margin: 25px 0; padding: 15px 0; overflow: hidden; position: relative; }
        .marquee-content { display: flex; flex-direction: column; animation: scrollUp 20s linear infinite; height: 200px; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .winner-row { display: flex; justify-content: space-between; padding: 10px 20px; border-bottom: 1px solid #333; font-size: 13px; }
        .winner-name { color: #FFD700; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .providers-wall { padding: 20px 15px; text-align: center; color: #888; font-size: 14px; background: #111418; margin: 20px 0; }
        .providers-wall span { margin: 0 10px; display: inline-block; }
        .reviews { padding: 0 15px; display: grid; gap: 15px; }
        .review-card { background: #252a34; padding: 15px; border-radius: 12px; }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user i { font-size: 24px; color: #FFD700; }
        .review-stars { color: #FFD700; font-size: 12px; }
        .faq-section { padding: 20px 15px; }
        .faq-item { margin-bottom: 20px; }
        .faq-item h3 { font-size: 16px; color: #FFD700; margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: #ccc; }
        .security-section { padding: 25px 15px; text-align: center; background: #111418; border-top: 1px solid #333; }
        .security-flex { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; flex-wrap: wrap; }
        .security-item { font-size: 12px; color: #888; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #111418; 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: 11px; color: #888; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: #FFD700; }
        footer { padding: 30px 15px 100px; background: #0b0d10; text-align: center; }
        .footer-social { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: left; margin-bottom: 30px; font-size: 13px; color: #888; }
        .copyright { font-size: 12px; color: #555; border-top: 1px solid #222; padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .reviews { grid-template-columns: repeat(2, 1fr); }
        }