* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0A0B10; color: #FFFFFF; font-family: 'Montserrat', sans-serif; line-height: 1.5; overflow-x: hidden; padding-bottom: 80px; }
        header { position: sticky; top: 0; z-index: 1000; background: rgba(22, 27, 34, 0.95); backdrop-filter: blur(10px); padding: 12px 15px; border-bottom: 1px solid #30363D; display: flex; justify-content: space-between; align-items: center; }
        header .brand { display: flex; align-items: center; gap: 8px; text-decoration: none; color: #FFD700; }
        header .brand img { width: 25px; height: 25px; border-radius: 4px; }
        header .brand strong { font-size: 16px; font-weight: 400; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1px; }
        header .auth-btns { display: flex; gap: 10px; }
        header .btn { padding: 8px 16px; border-radius: 20px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; transition: 0.3s; }
        header .btn-login { background: transparent; color: #FFFFFF; border: 1px solid #30363D; }
        header .btn-register { background: linear-gradient(180deg, #FFD700 0%, #B8860B 100%); color: #0A0B10; }
        main { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        .banner { width: 100%; aspect-ratio: 2/1; margin-bottom: 20px; border-radius: 12px; overflow: hidden; cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: #161B22; border: 2px solid #D4AF37; border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 25px; position: relative; overflow: hidden; }
        .jackpot-label { color: #FFD700; font-family: 'Oswald', sans-serif; font-size: 20px; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-value { font-size: 40px; font-weight: 800; color: #FFFFFF; text-shadow: 0 0 15px rgba(255, 215, 0, 0.6); font-family: 'Oswald', sans-serif; }
        .intro-card { background: #161B22; border-radius: 12px; padding: 25px; margin-bottom: 25px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 24px; color: #FFD700; margin-bottom: 12px; font-family: 'Oswald', sans-serif; }
        .intro-card p { color: #B0B3B8; font-size: 14px; }
        .section-title { font-size: 20px; color: #FFFFFF; margin: 30px 0 20px; display: flex; align-items: center; gap: 10px; font-family: 'Oswald', sans-serif; }
        .section-title::before { content: ""; width: 4px; height: 20px; background: #FFD700; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 25px; }
        .game-card { background: #161B22; border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid #30363D; transition: 0.3s; position: relative; }
        .game-card:hover { transform: translateY(-5px); border-color: #D4AF37; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; color: #FFFFFF; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; background: #21262D; }
        .payment-license { background: #161B22; padding: 20px; border-radius: 12px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-bottom: 25px; }
        .pl-item { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 10px; color: #B0B3B8; text-align: center; }
        .pl-item i { font-size: 24px; color: #FFD700; }
        .guides-container { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-item { background: #21262D; padding: 20px; border-radius: 12px; border: 1px solid #30363D; }
        .guide-item h2 { font-size: 18px; color: #FFD700; margin-bottom: 10px; font-family: 'Oswald', sans-serif; }
        .guide-item p { font-size: 14px; color: #B0B3B8; }
        .win-records { background: #161B22; border-radius: 12px; padding: 15px; margin-bottom: 25px; }
        .win-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #21262D; font-size: 13px; }
        .win-item:last-child { border: none; }
        .win-user { color: #FFD700; font-weight: 600; }
        .win-amount { color: #00C853; font-weight: 700; }
        .provider-wall { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 25px; }
        .provider-tag { flex: 1; min-width: calc(50% - 10px); background: linear-gradient(90deg, #161B22, #21262D); padding: 12px; text-align: center; border-radius: 8px; font-weight: 600; color: #FFD700; border: 1px solid #30363D; }
        .review-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .review-card { background: #161B22; padding: 20px; border-radius: 12px; border: 1px solid #30363D; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
        .review-avatar { width: 40px; height: 40px; background: #21262D; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #FFD700; font-size: 20px; }
        .review-info h3 { font-size: 14px; color: #FFFFFF; }
        .review-stars { color: #FFD700; font-size: 12px; }
        .review-content { font-size: 13px; color: #B0B3B8; font-style: italic; }
        .review-date { font-size: 11px; color: #65676B; margin-top: 10px; display: block; }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: #161B22; margin-bottom: 10px; border-radius: 8px; overflow: hidden; border: 1px solid #30363D; }
        .faq-question { padding: 15px; font-weight: 600; color: #FFFFFF; display: flex; justify-content: space-between; cursor: pointer; font-size: 15px; }
        .faq-answer { padding: 0 15px 15px; color: #B0B3B8; font-size: 14px; }
        .security-section { background: #0A0B10; border: 1px dashed #30363D; padding: 20px; border-radius: 12px; text-align: center; margin-bottom: 25px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; color: #00C853; font-size: 30px; }
        .security-text { font-size: 12px; color: #65676B; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #161B22; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #30363D; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: #B0B3B8; font-size: 12px; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #FFD700; }
        footer { background: #0A0B10; padding: 40px 15px 20px; border-top: 1px solid #30363D; text-align: center; }
        .footer-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 30px; }
        .footer-contacts a { color: #B0B3B8; text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; text-align: left; }
        .footer-links a { color: #65676B; text-decoration: none; font-size: 13px; transition: 0.3s; }
        .footer-links a:hover { color: #FFD700; }
        .copyright { color: #65676B; font-size: 12px; border-top: 1px solid #21262D; padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guides-container, .review-grid { grid-template-columns: 1fr 1fr; }
        }