* { 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; 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: #111419; height: 60px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2c313a; }
        .header-content { display: flex; justify-content: space-between; align-items: center; width: 100%; }
        .brand { display: flex; align-items: center; gap: 8px; }
        .brand img { width: 25px; height: 25px; border-radius: 4px; }
        .brand strong { font-size: 16px; font-weight: normal; color: #FFD700; letter-spacing: 0.5px; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 6px 12px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35, #FF2E63); color: #ffffff; }
        .btn:active { transform: scale(0.95); }
        .banner { width: 100%; cursor: pointer; aspect-ratio: 2/1; object-fit: cover; }
        .jackpot-container { background: radial-gradient(circle, #2c313a 0%, #1a1d24 100%); margin: 20px 15px; padding: 20px; border-radius: 15px; border: 1px solid #FFD700; text-align: center; }
        .jackpot-title { color: #FFD700; font-size: 18px; text-transform: uppercase; margin-bottom: 10px; font-weight: bold; }
        #jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); font-family: monospace; }
        .platform-intro { padding: 20px 15px; }
        .intro-card { background: #242832; padding: 20px; border-radius: 15px; border-left: 4px solid #FFD700; }
        h1 { font-size: 22px; color: #FFD700; margin-bottom: 15px; line-height: 1.2; }
        h2 { font-size: 20px; color: #FFD700; margin: 25px 0 15px; padding-left: 10px; border-left: 3px solid #FF2E63; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; padding: 0 15px; }
        .game-card { background: #242832; border-radius: 12px; overflow: hidden; transition: transform 0.3s; position: relative; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-bottom: 2px solid #FFD700; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #ffffff; }
        .game-provider { font-size: 12px; color: #888; text-transform: uppercase; }
        .payment-section { background: #111419; padding: 30px 15px; margin-top: 30px; text-align: center; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 15px; opacity: 0.8; }
        .payment-icons i { font-size: 30px; color: #FFD700; }
        .guidelines { padding: 20px 15px; }
        .guideline-item { background: #242832; margin-bottom: 15px; padding: 15px; border-radius: 10px; }
        .winners-marquee { background: #111419; padding: 15px 0; margin: 20px 0; overflow: hidden; border-top: 1px solid #FFD700; border-bottom: 1px solid #FFD700; }
        .marquee-content { display: flex; animation: marquee 30s linear infinite; gap: 40px; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-tag { white-space: nowrap; font-size: 14px; }
        .winner-tag span { color: #FFD700; font-weight: bold; }
        .providers-wall { padding: 20px 15px; text-align: center; color: #888; font-size: 14px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .provider-name { background: #242832; padding: 5px 15px; border-radius: 20px; border: 1px solid #333; }
        .reviews-section { padding: 20px 15px; }
        .review-card { background: #242832; padding: 20px; border-radius: 15px; margin-bottom: 15px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: #FFD700; }
        .stars { color: #FFD700; font-size: 12px; margin-bottom: 5px; }
        .review-date { font-size: 12px; color: #888; }
        .faq-section { padding: 20px 15px; }
        .faq-item { background: #242832; margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 16px; margin-bottom: 8px; color: #FFD700; }
        .security-section { background: #111419; padding: 30px 15px; text-align: center; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin: 15px 0; font-size: 24px; color: #FFD700; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: #111419; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2c313a; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 12px; color: #888; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: #FFD700; }
        footer { background: #0b0d10; padding: 40px 15px 100px; border-top: 1px solid #2c313a; }
        .footer-contact { margin-bottom: 30px; text-align: center; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: #888; display: block; margin-bottom: 8px; }
        .copyright { text-align: center; font-size: 12px; color: #555; border-top: 1px solid #222; padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .footer-links { grid-template-columns: repeat(5, 1fr); }
        }