* { 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; overflow-x: hidden; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header { background-color: #12141a; height: 60px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .header-content { display: flex; justify-content: space-between; align-items: center; width: 100%; }
        .logo-area { display: flex; align-items: center; gap: 10px; }
        .logo-area img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: #FFD700; text-transform: uppercase; letter-spacing: 1px; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn:active { transform: scale(0.95); }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35, #FF2E63); color: #ffffff; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: radial-gradient(circle, #2a2e38 0%, #1a1d24 100%); padding: 20px; text-align: center; border-radius: 15px; margin: 20px 15px; border: 1px solid #FFD700; }
        .jackpot-title { color: #FFD700; font-size: 14px; text-transform: uppercase; margin-bottom: 10px; font-weight: bold; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: #ffffff; text-shadow: 0 0 15px rgba(255, 215, 0, 0.5); font-family: monospace; }
        .intro-card { background: #252932; padding: 25px; margin: 20px 15px; border-radius: 15px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; color: #FFD700; }
        .intro-card p { font-size: 14px; color: #cccccc; }
        .section-header { padding: 0 15px; margin: 20px 0 10px; display: flex; align-items: center; gap: 10px; }
        .section-header h2 { font-size: 18px; color: #ffffff; position: relative; }
        .section-header h2::after { content: ''; display: block; width: 40px; height: 3px; background: #FFD700; margin-top: 5px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #252932; border-radius: 12px; overflow: hidden; transition: transform 0.3s; display: block; position: relative; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #fff; }
        .game-info p { font-size: 11px; color: #888; }
        .payments-section { background: #12141a; padding: 30px 15px; margin: 30px 0; text-align: center; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; opacity: 0.8; }
        .payment-icons i { font-size: 30px; color: #fff; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; padding: 0 15px; margin: 20px 0; }
        .guide-item { background: #252932; padding: 20px; border-radius: 12px; }
        .guide-item h3 { color: #FFD700; margin-bottom: 10px; font-size: 16px; }
        .guide-item p { font-size: 13px; color: #bbb; }
        .winners-marquee { background: #12141a; padding: 15px 0; margin: 20px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid #333; border-bottom: 1px solid #333; }
        .marquee-content { display: inline-block; animation: marquee 30s linear infinite; }
        .winner-tag { display: inline-flex; align-items: center; background: #252932; padding: 8px 15px; margin: 0 10px; border-radius: 20px; font-size: 12px; border: 1px solid #444; }
        .winner-tag span { color: #FFD700; font-weight: bold; margin: 0 5px; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { padding: 20px 15px; background: #252932; margin: 30px 15px; border-radius: 15px; text-align: center; }
        .providers-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; font-weight: bold; color: #888; }
        .reviews-section { padding: 0 15px; margin: 30px 0; }
        .review-card { background: #252932; padding: 20px; border-radius: 15px; margin-bottom: 15px; }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user i { font-size: 24px; color: #FFD700; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #666; margin-left: auto; }
        .faq-section { padding: 0 15px; margin: 30px 0; }
        .faq-item { background: #252932; margin-bottom: 10px; border-radius: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; color: #FFD700; cursor: pointer; display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: #ccc; }
        .responsible-gaming { padding: 30px 15px; text-align: center; background: #12141a; border-top: 1px solid #333; }
        .age-limit { display: inline-block; border: 2px solid #ff0000; color: #ff0000; font-weight: bold; padding: 5px 10px; border-radius: 50%; margin-bottom: 15px; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #12141a; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: #888; }
        .nav-item i { font-size: 18px; margin-bottom: 3px; }
        .nav-item.active { color: #FFD700; }
        footer { padding: 40px 15px 100px; background: #0d0f14; text-align: center; }
        .footer-social { margin-bottom: 30px; }
        .footer-social a { margin: 0 10px; color: #bbb; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: left; margin-bottom: 30px; }
        .footer-links a { font-size: 12px; color: #777; display: block; margin-bottom: 8px; }
        .copyright { font-size: 11px; color: #555; border-top: 1px solid #222; padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines-grid { grid-template-columns: 1fr 1fr 1fr; }
            .footer-links { grid-template-columns: repeat(5, 1fr); }
        }