* { margin: 0; padding: 0; box-sizing: border-box; }
        body { background-color: #1a1d24; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        
        header { background: #12141a; padding: 10px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2a2e38; }
        .header-wrap { display: flex; justify-content: space-between; align-items: center; }
        .brand { display: flex; align-items: center; gap: 8px; }
        .brand img { width: 25px; height: 25px; }
        .brand strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-weight: bold; border: none; cursor: pointer; font-size: 14px; transition: opacity 0.3s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35 0%, #FF2E63 100%); color: #ffffff; }
        
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        
        .jackpot-section { background: #000; padding: 20px; text-align: center; margin: 20px 0; border-radius: 15px; border: 2px solid #FFD700; }
        .jackpot-title { color: #FFD700; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: bold; color: #fff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); font-family: monospace; }
        
        .intro-card { background: #252932; padding: 20px; border-radius: 15px; margin-bottom: 30px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 22px; color: #FFD700; margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: #cccccc; }
        
        section { margin-bottom: 40px; }
        section h2 { font-size: 20px; color: #FFD700; margin-bottom: 20px; padding-left: 10px; border-left: 3px solid #FF2E63; }
        
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
        .game-card { background: #252932; border-radius: 12px; overflow: hidden; transition: transform 0.2s; position: relative; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-bottom: 2px solid #363b47; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 2px; }
        .game-provider { font-size: 11px; color: #888; }
        
        .payment-methods { background: #252932; padding: 20px; border-radius: 15px; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; align-items: center; }
        .payment-methods i { font-size: 30px; color: #888; }
        .license-seal { width: 60px; filter: grayscale(1); opacity: 0.7; }
        
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guide-item { background: #252932; padding: 15px; border-radius: 12px; }
        .guide-item h3 { color: #FFD700; margin-bottom: 8px; font-size: 16px; }
        .guide-item p { font-size: 13px; color: #bbb; }
        
        .marquee-container { background: #12141a; padding: 10px 0; overflow: hidden; position: relative; white-space: nowrap; border-radius: 10px; }
        .marquee-content { display: inline-block; animation: marquee 30s linear infinite; }
        .winner-tag { display: inline-flex; align-items: center; background: #252932; padding: 5px 15px; margin-right: 15px; border-radius: 20px; border: 1px solid #3a3f4b; font-size: 12px; }
        .winner-tag span { color: #FFD700; font-weight: bold; margin: 0 5px; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        
        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; padding: 15px; background: #252932; border-radius: 15px; }
        .provider-name { padding: 5px 12px; border: 1px solid #3a3f4b; border-radius: 5px; font-size: 12px; color: #aaa; background: #1a1d24; }
        
        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .review-card { background: #252932; padding: 15px; border-radius: 15px; border: 1px solid #3a3f4b; }
        .review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
        .user-info { display: flex; align-items: center; gap: 10px; }
        .user-info i { width: 35px; height: 35px; background: #3a3f4b; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #FFD700; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #666; }
        .review-text { font-size: 13px; color: #ccc; font-style: italic; }
        
        .faq-list { display: flex; flex-direction: column; gap: 15px; }
        .faq-item { background: #252932; padding: 15px; border-radius: 12px; }
        .faq-item h3 { font-size: 15px; color: #FFD700; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #bbb; }
        
        .security-section { background: #12141a; padding: 25px; border-radius: 15px; text-align: center; border: 1px solid #FF2E63; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #FFD700; }
        .security-text { font-size: 12px; color: #888; margin-bottom: 15px; }
        .age-badge { display: inline-block; background: #FF2E63; color: #fff; padding: 2px 8px; border-radius: 5px; font-weight: bold; }
        
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #12141a; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2a2e38; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: #888; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #FFD700; }
        
        footer { background: #0c0e12; padding: 40px 15px 100px; border-top: 1px solid #2a2e38; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
        .footer-social a { font-size: 14px; color: #FFD700; display: flex; align-items: center; gap: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 30px; }
        .footer-links a { font-size: 12px; color: #888; transition: color 0.2s; }
        .footer-links a:hover { color: #fff; }
        .footer-copy { text-align: center; font-size: 11px; color: #555; border-top: 1px solid #1a1d24; pt: 20px; }

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