* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0B0C10; color: #FFFFFF; font-family: 'Inter', sans-serif; line-height: 1.5; overflow-x: hidden; }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; text-transform: uppercase; color: #D4AF37; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; height: auto; display: block; }
        header { background: #1A237E; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid #D4AF37; }
        .logo-container { display: flex; align-items: center; gap: 8px; }
        .logo-container img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-container strong { font-size: 16px; font-weight: 400; color: #FFFFFF; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 4px; font-weight: 600; font-size: 0.875rem; cursor: pointer; border: none; }
        .btn-login { background: transparent; color: #D4AF37; border: 1px solid #D4AF37; }
        .btn-register { background: linear-gradient(135deg, #D4AF37, #996515); color: #0B0C10; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: #1F2833; padding: 20px; text-align: center; margin: 15px; border-radius: 12px; border: 1px solid #D4AF37; }
        .jackpot-title { color: #C5C6C7; font-size: 0.875rem; margin-bottom: 5px; }
        .jackpot-amount { color: #D4AF37; font-size: 2.5rem; font-weight: 900; font-family: 'Roboto Mono', monospace; }
        .intro-card { background: #1F2833; margin: 15px; padding: 20px; border-radius: 12px; border-left: 4px solid #D4AF37; }
        .intro-card h1 { font-size: 1.5rem; margin-bottom: 10px; line-height: 1.25; }
        .intro-card p { color: #C5C6C7; font-size: 0.875rem; }
        .section-title { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; font-size: 1.25rem; border-left: 3px solid #D4AF37; display: inline-block; margin-left: 15px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: #1F2833; border-radius: 10px; overflow: hidden; border: 1px solid #2D3748; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-image-wrapper { aspect-ratio: 1/1; position: relative; width: 100%; }
        .game-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 0.875rem; color: #FFFFFF; margin-bottom: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
        .game-provider { font-size: 0.75rem; color: #D4AF37; }
        .payment-methods { background: #1F2833; padding: 20px 15px; margin: 15px 0; text-align: center; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; }
        .payment-icons i { font-size: 2rem; color: #C5C6C7; }
        .guidelines { padding: 15px; }
        .guideline-item { background: #1F2833; padding: 15px; border-radius: 8px; margin-bottom: 15px; }
        .guideline-item h3 { font-size: 1rem; margin-bottom: 8px; color: #F9E076; }
        .guideline-item p { font-size: 0.875rem; color: #C5C6C7; }
        .marquee-container { background: #1F2833; padding: 10px 0; margin: 15px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid #2D3748; border-bottom: 1px solid #2D3748; }
        .marquee-content { display: inline-block; animation: scrollLeft 30s linear infinite; }
        .winning-record { display: inline-flex; align-items: center; gap: 10px; margin-right: 30px; font-size: 0.875rem; }
        .winning-record .user { color: #66FCF1; }
        .winning-record .amount { color: #00E676; font-weight: bold; }
        @keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { background: #1F2833; padding: 20px; text-align: center; margin: 15px; border-radius: 12px; }
        .providers-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; font-weight: bold; color: #C5C6C7; font-size: 0.9rem; }
        .providers-list span { padding: 5px 12px; background: #2D3748; border-radius: 20px; }
        .reviews-container { padding: 15px; }
        .review-card { background: #1F2833; padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #2D3748; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 2rem; color: #D4AF37; }
        .review-user-info h3 { font-size: 1rem; color: #FFFFFF; }
        .stars { color: #FFEA00; font-size: 0.75rem; }
        .review-date { font-size: 0.75rem; color: #C5C6C7; margin-bottom: 8px; }
        .review-content { font-size: 0.875rem; color: #C5C6C7; }
        .faq-section { padding: 15px; }
        .faq-item { background: #1F2833; border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: #D4AF37; cursor: pointer; border-bottom: 1px solid #2D3748; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 15px; font-size: 0.875rem; color: #C5C6C7; }
        .security-section { background: #0B0C10; border: 1px solid #2D3748; margin: 15px; padding: 20px; border-radius: 12px; text-align: center; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-top: 15px; font-size: 1.5rem; color: #00E676; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: #1A237E; display: flex; justify-content: space-around; align-items: center; z-index: 1001; border-top: 2px solid #D4AF37; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #C5C6C7; font-size: 0.75rem; gap: 4px; }
        .nav-item i { font-size: 1.25rem; }
        .nav-item.active { color: #D4AF37; }
        footer { background: #1F2833; padding: 30px 15px 100px 15px; color: #C5C6C7; font-size: 0.875rem; }
        .footer-contact { margin-bottom: 25px; text-align: center; }
        .footer-contact a { margin: 0 10px; color: #D4AF37; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: center; }
        .footer-bottom { text-align: center; border-top: 1px solid #2D3748; padding-top: 20px; font-size: 0.75rem; }