* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0A0A0A; color: #FFFFFF; font-family: 'Roboto', sans-serif; line-height: 1.6; overflow-x: hidden; }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; color: #D4AF37; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header { background-color: #141414; padding: 10px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333333; }
        .header-content { display: flex; justify-content: space-between; align-items: center; padding: 0 15px; }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; object-fit: contain; }
        .logo-area strong { font-size: 16px; font-weight: 400; text-transform: uppercase; letter-spacing: 1px; }
        .auth-btns { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 4px; font-weight: 600; cursor: pointer; border: none; font-size: 14px; }
        .btn-login { background-color: transparent; color: #FFFFFF; border: 1px solid #D4AF37; }
        .btn-register { background-color: #D4AF37; color: #0A0A0A; }
        .hero-banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: linear-gradient(180deg, #141414 0%, #006400 100%); padding: 20px; text-align: center; margin: 20px 15px; border-radius: 12px; border: 1px solid #D4AF37; }
        .jackpot-title { font-family: 'Montserrat', sans-serif; font-size: 14px; color: #FFD700; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { font-family: 'Oswald', sans-serif; font-size: 32px; color: #FFFFFF; font-weight: 700; text-shadow: 0 0 10px rgba(212, 175, 55, 0.8); }
        .intro-card { background-color: #141414; padding: 25px; margin: 20px 15px; border-radius: 15px; border-left: 4px solid #D4AF37; }
        .intro-card h1 { font-size: 24px; margin-bottom: 12px; line-height: 1.25; }
        .intro-card p { color: #E0E0E0; font-size: 14px; }
        .section-title { padding: 0 15px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-title h2 { font-size: 20px; text-transform: uppercase; border-left: 3px solid #006400; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background-color: #1C1C1C; border-radius: 10px; overflow: hidden; border: 1px solid #222222; position: relative; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; }
        .game-info h3 { font-size: 14px; color: #FFFFFF; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 2px; }
        .game-info span { font-size: 10px; color: #A0A0A0; text-transform: uppercase; }
        .payments-licenses { background-color: #141414; padding: 20px; margin: 30px 0; text-align: center; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; opacity: 0.8; }
        .payment-icons i { font-size: 24px; color: #A0A0A0; }
        .guidelines-grid { padding: 15px; display: grid; gap: 15px; }
        .guide-item { background-color: #1C1C1C; padding: 15px; border-radius: 8px; border: 1px solid #333333; }
        .guide-item h3 { font-size: 16px; margin-bottom: 8px; color: #FFD700; }
        .guide-item p { font-size: 13px; color: #E0E0E0; }
        .marquee-wins { background-color: #000; padding: 10px 0; margin: 20px 0; border-top: 1px solid #B8860B; border-bottom: 1px solid #B8860B; overflow: hidden; }
        .marquee-content { display: flex; gap: 30px; animation: scrollMarquee 40s linear infinite; white-space: nowrap; }
        @keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .win-item { display: flex; align-items: center; gap: 8px; font-size: 12px; }
        .win-item strong { color: #00C853; font-family: 'Oswald', sans-serif; }
        .providers-wall { padding: 20px 15px; text-align: center; background-color: #0A0A0A; }
        .provider-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; font-family: 'Oswald', sans-serif; color: #666666; font-size: 14px; }
        .reviews-section { padding: 15px; background-color: #141414; }
        .review-card { background-color: #1C1C1C; padding: 15px; border-radius: 10px; margin-bottom: 15px; border-bottom: 2px solid #006400; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: #D4AF37; }
        .review-user { font-weight: 600; font-size: 14px; }
        .stars { color: #FFD700; font-size: 12px; }
        .faq-section { padding: 20px 15px; }
        .faq-item { margin-bottom: 15px; background-color: #1C1C1C; border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 15px; margin-bottom: 8px; color: #D4AF37; }
        .faq-item p { font-size: 13px; color: #A0A0A0; }
        .security-section { padding: 25px 15px; text-align: center; border-top: 1px solid #333333; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; }
        .eighteen-plus { border: 2px solid #FF1744; color: #FF1744; border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; font-weight: 800; margin: 0 auto 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background-color: #141414; display: flex; justify-content: space-around; padding: 10px 0; border-top: 2px solid #D4AF37; z-index: 999; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 10px; color: #A0A0A0; }
        .nav-item i { font-size: 18px; color: #D4AF37; }
        footer { background-color: #0A0A0A; padding: 40px 15px 100px; border-top: 1px solid #1A1A1A; }
        .footer-contact { margin-bottom: 25px; }
        .footer-contact a { display: block; margin-bottom: 8px; font-size: 14px; color: #D4AF37; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 12px; color: #A0A0A0; }
        .copyright { text-align: center; font-size: 11px; color: #666666; border-top: 1px solid #222222; padding-top: 20px; }