* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0B0C10; color: #FFFFFF; font-family: 'Inter', system-ui, -apple-system, sans-serif; line-height: 1.5; overflow-x: hidden; }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #FFFFFF; line-height: 1.25; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }

        header { background-color: #121212; border-bottom: 1px solid #333333; position: sticky; top: 0; z-index: 1000; padding: 10px 15px; }
        .top-nav { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
        .logo-container { display: flex; align-items: center; gap: 8px; }
        .logo-img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-name { font-size: 16px; font-weight: 400; color: #FFFFFF; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 6px; font-weight: 600; cursor: pointer; border: none; font-size: 14px; transition: 0.3s; }
        .btn-login { background-color: transparent; color: #FFFFFF; border: 1px solid #D4AF37; }
        .btn-register { background-color: #D4AF37; color: #0B0C10; }
        .btn-register:hover { background-color: #F9A825; }

        .hero-banner { width: 100%; cursor: pointer; aspect-ratio: 2/1; overflow: hidden; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section { background: linear-gradient(180deg, #1F2833 0%, #121212 100%); padding: 20px; text-align: center; border-bottom: 2px solid #D4AF37; }
        .jackpot-label { color: #D4AF37; font-weight: 700; font-size: 18px; margin-bottom: 5px; text-transform: uppercase; }
        .jackpot-amount { font-family: 'Roboto Mono', monospace; font-size: 32px; color: #FFD700; font-weight: 800; text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }

        .intro-section { padding: 30px 15px; text-align: center; max-width: 800px; margin: 0 auto; }
        .intro-section h1 { font-size: 24px; color: #D4AF37; margin-bottom: 15px; }
        .intro-section p { font-size: 16px; color: #A9A9A9; }

        .section-title { padding: 20px 15px 10px; font-size: 20px; border-left: 4px solid #D4AF37; margin: 20px 15px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; padding: 0 15px 30px; }
        .game-card { background: #1F2833; border-radius: 12px; overflow: hidden; border: 1px solid #333333; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .game-image-wrapper { aspect-ratio: 1/1; position: relative; overflow: hidden; }
        .game-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .article-list { padding: 0 15px 30px; display: flex; flex-direction: column; gap: 15px; }
        .article-card { display: flex; background: #121212; border: 1px solid #1F2833; border-radius: 10px; overflow: hidden; }
        .article-thumb { width: 100px; height: 100px; flex-shrink: 0; }
        .article-thumb img { width: 100%; height: 100%; object-fit: cover; }
        .article-content { padding: 10px; display: flex; flex-direction: column; justify-content: center; }
        .article-content h3 { font-size: 14px; margin-bottom: 5px; color: #D4AF37; }
        .article-content p { font-size: 12px; color: #A9A9A9; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

        .trust-section { background: #121212; padding: 30px 15px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
        .payment-item i { font-size: 24px; color: #C0C0C0; }
        .payment-item span { font-size: 10px; color: #A9A9A9; }

        .lottery-section { background: #1F2833; margin: 20px 15px; border-radius: 15px; padding: 15px; }
        .winner-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #333333; }
        .winner-row:last-child { border-bottom: none; }
        .winner-user { font-size: 14px; color: #FFFFFF; font-weight: 600; }
        .winner-game { font-size: 12px; color: #A9A9A9; }
        .winner-amount { font-size: 14px; color: #2ECC71; font-weight: 700; }

        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px 30px; }
        .provider-block { background: #1F2833; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 8px; border: 1px solid #333333; font-weight: 700; color: #C0C0C0; }

        .reviews-section { padding: 0 15px 30px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: #121212; border: 1px solid #333333; border-radius: 12px; padding: 15px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .user-avatar { width: 40px; height: 40px; background: #1F2833; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #D4AF37; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-text { font-size: 13px; color: #A9A9A9; font-style: italic; margin-bottom: 10px; }
        .review-date { font-size: 11px; color: #666666; }

        .faq-section { padding: 0 15px 40px; }
        .faq-item { background: #1F2833; border-radius: 8px; margin-bottom: 10px; padding: 15px; border: 1px solid #333333; }
        .faq-item h3 { font-size: 16px; margin-bottom: 10px; color: #D4AF37; }
        .faq-item p { font-size: 14px; color: #A9A9A9; }

        .security-footer { padding: 30px 15px; background: #121212; border-top: 1px solid #333333; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #D4AF37; }
        .security-text { font-size: 12px; color: #A9A9A9; margin-bottom: 10px; }
        .age-badge { display: inline-block; padding: 4px 8px; border: 1px solid #E74C3C; color: #E74C3C; border-radius: 4px; font-weight: 700; margin-bottom: 15px; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #121212; border-top: 1px solid #D4AF37; display: flex; justify-content: space-around; padding: 8px 0; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #A9A9A9; font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #D4AF37; }

        footer { background: #0B0C10; padding: 20px 15px 100px; border-top: 1px solid #333333; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: #A9A9A9; }
        .footer-bottom { text-align: center; font-size: 12px; color: #666666; border-top: 1px solid #1F2833; padding-top: 20px; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .providers-grid { grid-template-columns: repeat(4, 1fr); }
            .footer-links { grid-template-columns: repeat(5, 1fr); }
        }