* { box-sizing: border-box; margin: 0; padding: 0; }
        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; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header { background: #111317; padding: 10px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .header-content { display: flex; justify-content: space-between; align-items: center; }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-area 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, #FF2E63); color: #ffffff; }
        .banner { width: 100%; cursor: pointer; display: block; overflow: hidden; }
        .banner img { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; }
        .jackpot-section { background: radial-gradient(circle, #2a2e38 0%, #1a1d24 100%); padding: 20px; text-align: center; border-radius: 15px; margin: 20px 0; border: 1px solid #FFD700; }
        .jackpot-title { color: #FFD700; font-size: 1.2rem; margin-bottom: 10px; text-transform: uppercase; font-weight: bold; }
        .jackpot-amount { font-size: 2.5rem; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-card { background: #252932; padding: 20px; border-radius: 15px; margin-bottom: 25px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 1.5rem; color: #FFD700; margin-bottom: 15px; }
        .intro-card p { font-size: 1rem; color: #cccccc; }
        .section-title { margin: 25px 0 15px; font-size: 1.4rem; display: flex; align-items: center; gap: 10px; }
        .section-title i { color: #FFD700; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background: #252932; border-radius: 12px; overflow: hidden; transition: transform 0.2s; position: relative; }
        .game-card:hover { transform: translateY(-5px); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 0.9rem; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #ffffff; }
        .game-info span { font-size: 0.75rem; color: #888; }
        .trust-section { background: #111317; padding: 20px; border-radius: 15px; margin: 25px 0; }
        .payment-icons, .provider-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; align-items: center; opacity: 0.7; }
        .payment-icons i, .provider-wall span { font-size: 1.5rem; }
        .provider-wall span { font-weight: bold; color: #888; font-size: 1.1rem; }
        .guidelines-grid, .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guideline-card, .review-card { background: #252932; padding: 15px; border-radius: 12px; border: 1px solid #333; }
        .guideline-card h3 { color: #FFD700; margin-bottom: 10px; font-size: 1.1rem; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 2rem; color: #FFD700; }
        .review-user h4 { font-size: 0.9rem; }
        .review-stars { color: #FFD700; font-size: 0.8rem; }
        .review-date { font-size: 0.75rem; color: #666; margin-left: auto; }
        .winners-marquee { background: #111317; padding: 15px; overflow: hidden; border-radius: 10px; margin: 25px 0; }
        .marquee-container { display: flex; gap: 20px; animation: marquee 30s linear infinite; width: max-content; }
        .winner-item { background: #252932; padding: 10px 15px; border-radius: 8px; border-left: 3px solid #FF6B35; white-space: nowrap; font-size: 0.85rem; }
        .winner-item span { color: #FFD700; font-weight: bold; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .faq-section { margin: 25px 0; }
        .faq-item { background: #252932; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; cursor: pointer; font-weight: bold; display: flex; justify-content: space-between; border-bottom: 1px solid #333; color: #FFD700; }
        .faq-answer { padding: 15px; font-size: 0.9rem; color: #cccccc; }
        .security-section { background: #111317; padding: 20px; border-radius: 12px; text-align: center; font-size: 0.85rem; border: 1px dashed #444; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 1.5rem; color: #4CAF50; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #111317; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 0.75rem; color: #888; }
        .nav-item i { font-size: 1.2rem; margin-bottom: 4px; }
        .nav-item.active { color: #FFD700; }
        footer { background: #0c0e12; padding: 30px 15px 100px; text-align: center; }
        .footer-contact { margin-bottom: 25px; display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: left; margin-bottom: 25px; font-size: 0.85rem; color: #888; }
        .copyright { font-size: 0.8rem; color: #555; border-top: 1px solid #222; padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
        }