* { 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; }
        ul { list-style: none; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header { background: #1a1d24; border-bottom: 1px solid rgba(255, 215, 0, 0.2); height: 60px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; }
        .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; }
        .auth-btns { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: bold; border: none; cursor: pointer; 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; }
        .main-banner { width: 100%; display: block; cursor: pointer; }
        .main-banner img { width: 100%; aspect-ratio: 2/1; display: block; object-fit: cover; }
        .jackpot-section { background: rgba(0,0,0,0.5); padding: 20px; text-align: center; margin: 15px 0; border: 1px solid #FFD700; border-radius: 12px; }
        .jackpot-title { color: #FFD700; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-card { background: #252a34; padding: 25px; border-radius: 15px; margin: 20px 0; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 22px; color: #FFD700; margin-bottom: 10px; line-height: 1.2; }
        .intro-card p { font-size: 14px; color: #cccccc; }
        section { margin-bottom: 30px; }
        h2 { font-size: 20px; color: #FFD700; margin-bottom: 15px; border-left: 3px solid #FF2E63; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: #252a34; border-radius: 12px; overflow: hidden; transition: 0.3s; position: relative; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; border-bottom: 2px solid #FFD700; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; color: #ffffff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: #FFD700; opacity: 0.8; }
        .payments-section { background: #252a34; padding: 20px; border-radius: 15px; text-align: center; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; }
        .payment-icons i { font-size: 30px; color: #FFD700; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guideline-item { background: #252a34; padding: 20px; border-radius: 12px; border-top: 2px solid #FF2E63; }
        .guideline-item h3 { color: #FFD700; margin-bottom: 10px; }
        .marquee-container { background: #000; padding: 15px 0; overflow: hidden; position: relative; margin: 20px 0; border-radius: 8px; }
        .marquee-content { display: flex; animation: scroll 40s linear infinite; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .win-record { white-space: nowrap; padding: 0 20px; border-right: 1px solid #333; display: flex; align-items: center; gap: 10px; }
        .win-record span { color: #FFD700; font-weight: bold; }
        .providers-wall { background: #252a34; padding: 20px; border-radius: 15px; text-align: center; }
        .providers-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; color: #FFD700; font-weight: bold; font-size: 14px; opacity: 0.7; }
        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .review-card { background: #252a34; padding: 20px; border-radius: 12px; position: relative; }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user i { font-size: 30px; color: #FFD700; }
        .review-stars { color: #FFD700; margin-bottom: 5px; }
        .faq-section { background: #252a34; padding: 20px; border-radius: 15px; }
        .faq-item { margin-bottom: 20px; border-bottom: 1px solid #333; padding-bottom: 15px; }
        .faq-item h3 { font-size: 16px; color: #FFD700; margin-bottom: 10px; }
        .security-section { background: #1a1d24; border: 1px dashed #FFD700; padding: 20px; border-radius: 15px; text-align: center; margin-top: 30px; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #FFD700; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; border-top: 1px solid #333; display: flex; justify-content: space-around; padding: 10px 0; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: #888; font-size: 12px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #FFD700; }
        footer { background: #000; padding: 40px 15px 80px; text-align: center; }
        .footer-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 30px; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 30px; font-size: 13px; color: #888; }
        .copyright { color: #555; font-size: 12px; padding-top: 20px; border-top: 1px solid #222; }