* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0a0e17; color: #ffffff; font-family: 'Inter', 'Roboto', 'Segoe UI', Arial, sans-serif; line-height: 1.5; padding-bottom: 70px; }
        h1, h2, h3 { font-family: 'Montserrat', 'Inter', system-ui, -apple-system, sans-serif; color: #ffffff; }
        a { text-decoration: none; color: inherit; transition: opacity 0.3s; }
        img { max-width: 100%; height: auto; display: block; }
        
        header { background-color: #151b28; padding: 12px 16px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d3440; 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; }
        .logo-box strong { font-size: 16px; font-weight: 400; color: #ffffff; }
        .header-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 6px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #d4af37; }
        .btn-register { background: linear-gradient(135deg, #d4af37, #f9e076); color: #050505; }

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

        .jackpot-section { background: #1e2633; margin: 15px; padding: 20px; border-radius: 12px; border: 1px solid #d4af37; text-align: center; }
        .jackpot-label { color: #d4af37; font-weight: 700; font-size: 14px; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { font-family: 'Archivo Black', sans-serif; font-size: 32px; color: #f9e076; text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); letter-spacing: 1px; }

        .intro-section { padding: 20px 16px; text-align: center; }
        .intro-section h1 { font-size: 24px; color: #d4af37; margin-bottom: 12px; line-height: 1.2; }
        .intro-section p { font-size: 14px; color: #b0b3b8; }

        .section-container { padding: 0 16px 20px; }
        .section-title { font-size: 20px; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; border-left: 4px solid #d4af37; padding-left: 10px; }
        
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: #151b28; border-radius: 10px; overflow: hidden; border: 1px solid #2d3440; display: block; }
        .game-card img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
        .game-card h3 { font-size: 14px; padding: 10px; text-align: center; color: #ffffff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .article-list { display: flex; flex-direction: column; gap: 15px; }
        .article-item { background: #1e2633; border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; border: 1px solid #2d3440; }
        .article-img { aspect-ratio: 16/9; width: 100%; object-fit: cover; }
        .article-content { padding: 15px; }
        .article-content h3 { font-size: 16px; margin-bottom: 8px; color: #f9e076; }
        .article-content p { font-size: 13px; color: #b0b3b8; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; text-align: center; }
        .payment-item { background: #151b28; padding: 15px 5px; border-radius: 8px; border: 1px solid #2d3440; }
        .payment-item i { font-size: 24px; color: #d4af37; margin-bottom: 8px; }
        .payment-item span { font-size: 10px; color: #b0b3b8; display: block; font-weight: 600; }

        .winners-box { background: #151b28; border-radius: 12px; padding: 15px; border: 1px solid #2d3440; max-height: 300px; overflow-y: hidden; }
        .winner-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #1e2633; }
        .winner-row:last-child { border-bottom: none; }
        .winner-info { display: flex; flex-direction: column; }
        .winner-user { font-weight: 700; color: #f9e076; font-size: 14px; }
        .winner-game { font-size: 12px; color: #b0b3b8; }
        .winner-amount { color: #4caf50; font-weight: 800; font-size: 14px; font-family: 'Archivo Black', sans-serif; }

        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-block { background: #1e2633; padding: 20px; border-radius: 8px; text-align: center; font-weight: 800; color: #d4af37; border: 1px solid #2d3440; font-size: 14px; letter-spacing: 1px; }

        .review-card { background: #151b28; padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid #2d3440; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; background: #1e2633; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #d4af37; }
        .review-user-info { display: flex; flex-direction: column; }
        .review-name { font-weight: 700; font-size: 14px; }
        .review-stars { color: #ffab00; font-size: 12px; }
        .review-text { font-size: 13px; color: #b0b3b8; font-style: italic; }
        .review-date { font-size: 11px; color: #65676b; margin-top: 8px; }

        .faq-item { background: #151b28; border-radius: 8px; margin-bottom: 10px; border: 1px solid #2d3440; }
        .faq-question { padding: 15px; font-weight: 700; font-size: 14px; color: #f9e076; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: #b0b3b8; }

        .security-section { background: #151b28; padding: 20px 16px; text-align: center; border-top: 2px solid #d4af37; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; color: #d4af37; font-size: 24px; }
        .security-text { font-size: 12px; color: #b0b3b8; margin-bottom: 10px; }
        .security-link { color: #d4af37; font-weight: 600; text-decoration: underline; font-size: 12px; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #151b28; border-top: 1px solid #2d3440; display: flex; justify-content: space-around; padding: 8px 0; z-index: 1000; }
        .nav-item { text-align: center; color: #b0b3b8; flex: 1; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 3px; }
        .nav-item span { font-size: 11px; font-weight: 500; }
        .nav-item:nth-child(3) i { color: #d4af37; font-size: 24px; }

        footer { background: #0a0e17; padding: 30px 16px 100px; border-top: 1px solid #1e2633; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
        .footer-col h4 { font-size: 14px; color: #ffffff; margin-bottom: 12px; text-transform: uppercase; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 8px; }
        .footer-col a { font-size: 13px; color: #65676b; }
        .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #1e2633; font-size: 12px; color: #65676b; }

        @keyframes countUp {
            from { opacity: 0.8; transform: translateY(2px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .rolling { animation: countUp 0.5s infinite alternate; }