* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0A0A0A; color: #FFFFFF; font-family: 'Inter', sans-serif; line-height: 1.5; overflow-x: hidden; }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #FFFFFF; }
        a { text-decoration: none; color: inherit; transition: color 0.3s; }
        img { max-width: 100%; display: block; }
        
        header { background-color: #161616; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333333; display: flex; justify-content: space-between; align-items: center; }
        header .brand { display: flex; align-items: center; gap: 8px; }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        header .brand strong { font-size: 16px; font-weight: 400; color: #FFFFFF; }
        header .auth-buttons { display: flex; gap: 10px; }
        header button { padding: 8px 16px; border-radius: 6px; font-weight: 600; cursor: pointer; border: none; font-size: 0.875rem; }
        header .btn-login { background: transparent; color: #D4AF37; border: 1px solid #D4AF37; }
        header .btn-register { background: #D4AF37; color: #000000; }

        main { padding-bottom: 80px; }
        .banner-container { width: 100%; aspect-ratio: 2 / 1; overflow: hidden; cursor: pointer; background: #222222; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section { background: linear-gradient(180deg, #161616 0%, #000000 100%); padding: 20px; text-align: center; border-bottom: 2px solid #D4AF37; }
        .jackpot-title { font-size: 0.875rem; color: #D4AF37; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
        .jackpot-amount { font-family: 'Roboto Mono', monospace; font-size: 2rem; color: #F1C40F; text-shadow: 0 0 15px rgba(241, 196, 15, 0.5); }

        .intro-card { background: #161616; margin: 20px 15px; padding: 20px; border-radius: 12px; border-left: 4px solid #D4AF37; }
        .intro-card h1 { font-size: 1.5rem; margin-bottom: 10px; color: #D4AF37; }
        .intro-card p { font-size: 0.875rem; color: #BDBDBD; }

        .section-header { padding: 0 15px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-header h2 { font-size: 1.25rem; }
        .section-header i { color: #D4AF37; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; padding: 0 15px; }
        .game-card { background: #161616; border-radius: 12px; overflow: hidden; border: 1px solid #333333; }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
        .game-card h3 { padding: 10px; font-size: 0.875rem; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #FFFFFF; }

        .payments-licenses { background: #161616; margin: 30px 0; padding: 25px 15px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
        .payment-item i { font-size: 1.5rem; color: #D4AF37; margin-bottom: 8px; }
        .payment-item span { display: block; font-size: 0.75rem; color: #BDBDBD; }

        .guides-section { padding: 0 15px; }
        .guide-item { background: #222222; padding: 15px; border-radius: 10px; margin-bottom: 15px; border: 1px solid #333333; }
        .guide-item h3 { color: #D4AF37; margin-bottom: 8px; font-size: 1.125rem; }
        .guide-item p { font-size: 0.875rem; color: #BDBDBD; }

        .marquee-container { background: #000000; border-y: 1px solid #333333; padding: 10px 0; overflow: hidden; white-space: nowrap; margin: 30px 0; }
        .marquee-content { display: inline-block; animation: scroll 40s linear infinite; }
        .winner-tag { display: inline-flex; align-items: center; background: #161616; padding: 5px 15px; border-radius: 20px; margin-right: 20px; border: 1px solid #D4AF37; }
        .winner-tag span { font-size: 0.8125rem; margin-right: 8px; }
        .winner-tag .win-amt { color: #2ECC71; font-weight: bold; }

        .providers-wall { padding: 0 15px; margin: 30px 0; }
        .provider-blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-block { background: #161616; padding: 15px; border-radius: 8px; text-align: center; font-weight: 700; color: #D4AF37; font-size: 0.75rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 5px; }
        .provider-block span { background: #222222; padding: 4px 8px; border-radius: 4px; border: 1px solid #333333; }

        .reviews-section { padding: 0 15px; }
        .review-card { background: #161616; padding: 20px; border-radius: 12px; margin-bottom: 15px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .review-header i { font-size: 1.5rem; color: #D4AF37; }
        .review-user { font-weight: 600; font-size: 0.9375rem; }
        .stars { color: #F1C40F; font-size: 0.75rem; margin-bottom: 10px; }
        .review-content { font-size: 0.8125rem; color: #BDBDBD; font-style: italic; }
        .review-date { font-size: 0.75rem; color: #616161; margin-top: 10px; text-align: right; }

        .faq-section { padding: 0 15px; }
        .faq-item { margin-bottom: 20px; border-bottom: 1px solid #333333; padding-bottom: 15px; }
        .faq-item h3 { font-size: 1rem; color: #D4AF37; margin-bottom: 10px; }
        .faq-item p { font-size: 0.875rem; color: #BDBDBD; }

        .responsible-gaming { background: #161616; margin: 30px 15px; padding: 20px; border-radius: 12px; text-align: center; border: 1px dashed #FF0000; }
        .responsible-gaming i { font-size: 2rem; color: #E74C3C; margin-bottom: 10px; }
        .responsible-gaming h2 { font-size: 1.25rem; margin-bottom: 10px; }
        .responsible-gaming p { font-size: 0.8125rem; color: #BDBDBD; margin-bottom: 15px; }
        .age-limit { background: #FF0000; color: #FFFFFF; display: inline-block; padding: 2px 10px; border-radius: 4px; font-weight: 800; margin-bottom: 10px; }

        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #161616; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333333; z-index: 1001; }
        .nav-item { text-align: center; color: #BDBDBD; font-size: 0.75rem; }
        .nav-item i { display: block; font-size: 1.25rem; margin-bottom: 4px; color: #D4AF37; }

        footer { background: #000000; padding: 40px 15px 100px; border-top: 1px solid #333333; text-align: center; }
        footer .contact-row { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; flex-wrap: wrap; }
        footer .contact-row a { color: #D4AF37; font-size: 0.875rem; border: 1px solid #333333; padding: 5px 12px; border-radius: 20px; }
        footer .links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        footer .links-grid a { font-size: 0.8125rem; color: #BDBDBD; }
        footer .copyright { font-size: 0.75rem; color: #616161; margin-top: 20px; border-top: 1px solid #222222; padding-top: 20px; }

        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }