* { 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; transition: 0.3s; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header { background: #13151a; padding: 10px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323d; }
        header .container { 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; text-transform: uppercase; letter-spacing: 1px; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-weight: bold; border: none; cursor: pointer; font-size: 14px; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35 0%, #FF2E63 100%); color: #ffffff; }
        .btn:active { transform: scale(0.95); }
        .main-banner { margin-bottom: 20px; cursor: pointer; aspect-ratio: 2 / 1; overflow: hidden; }
        .main-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: #000; border: 2px solid #FFD700; border-radius: 12px; margin: 20px 0; padding: 20px; text-align: center; box-shadow: 0 0 15px rgba(255, 215, 0, 0.3); }
        .jackpot-label { font-size: 14px; color: #FFD700; text-transform: uppercase; font-weight: bold; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: #ffffff; text-shadow: 0 0 10px #FFD700; font-family: 'Courier New', Courier, monospace; }
        .intro-card { background: #242832; padding: 25px; border-radius: 15px; margin-bottom: 30px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 22px; margin-bottom: 15px; color: #FFD700; }
        .intro-card p { font-size: 15px; color: #bfc3cc; }
        .section-title { font-size: 20px; margin: 30px 0 15px; border-left: 4px solid #FF2E63; padding-left: 10px; display: flex; justify-content: space-between; align-items: center; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
        .game-card { background: #242832; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.3); }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: 0.3s; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #fff; }
        .game-info span { font-size: 12px; color: #888; }
        .payment-licensing { background: #13151a; padding: 20px; border-radius: 12px; margin: 30px 0; text-align: center; }
        .icon-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 15px; }
        .icon-row i { font-size: 30px; color: #FFD700; opacity: 0.8; }
        .text-section { margin: 30px 0; background: #242832; padding: 20px; border-radius: 12px; }
        .text-section h2 { font-size: 18px; margin-bottom: 15px; color: #FFD700; }
        .text-section p { font-size: 14px; margin-bottom: 10px; color: #bfc3cc; }
        .winners-marquee { background: #13151a; overflow: hidden; height: 150px; border-radius: 12px; margin: 30px 0; border: 1px solid #2d323d; position: relative; }
        .marquee-content { display: flex; flex-direction: column; animation: scroll-up 20s linear infinite; }
        @keyframes scroll-up { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .winner-item { display: flex; justify-content: space-between; padding: 10px 20px; border-bottom: 1px solid #242832; align-items: center; }
        .winner-item span { font-size: 13px; }
        .winner-val { color: #00ff88; font-weight: bold; }
        .providers-wall { background: #242832; padding: 20px; border-radius: 12px; text-align: center; }
        .provider-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; font-weight: bold; color: #FFD700; font-size: 14px; }
        .reviews-container { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 30px 0; }
        .review-card { background: #242832; padding: 20px; border-radius: 12px; border: 1px solid #2d323d; }
        .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; font-size: 15px; }
        .stars { color: #FFD700; font-size: 12px; margin-bottom: 8px; }
        .review-date { font-size: 11px; color: #888; margin-bottom: 8px; }
        .review-content { font-size: 13px; color: #bfc3cc; }
        .faq-section { margin: 30px 0; }
        .faq-item { background: #242832; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; cursor: pointer; font-weight: bold; color: #FFD700; font-size: 15px; border-bottom: 1px solid #2d323d; }
        .faq-answer { padding: 15px; font-size: 14px; color: #bfc3cc; }
        .safety-section { background: #13151a; padding: 25px; border-radius: 12px; text-align: center; margin-bottom: 30px; }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
        .safety-icons i { font-size: 40px; color: #FF2E63; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #13151a; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323d; z-index: 2000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: #888; }
        .nav-item i { font-size: 20px; margin-bottom: 3px; }
        .nav-item:active { color: #FFD700; }
        footer { background: #13151a; padding: 40px 0 20px; border-top: 1px solid #2d323d; }
        .footer-row { margin-bottom: 30px; }
        .contact-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 25px; }
        .contact-links a { font-size: 14px; color: #FFD700; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; }
        .footer-grid a { font-size: 13px; color: #888; display: block; margin-bottom: 8px; }
        .copyright { text-align: center; padding-top: 20px; border-top: 1px solid #242832; color: #666; font-size: 12px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .reviews-container { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(5, 1fr); }
        }