/* Remove blur from all sections before the casino description section */

/* Header - remove blur */
.header {
    backdrop-filter: none !important;
    background: rgba(0, 0, 0, 0.8) !important;
}

/* Promo section - remove blur */
.promo-section {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: none !important;
}

.banner {
    backdrop-filter: none !important;
}

/* Games section - remove blur */
.games-section {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: none !important;
}

.game-card {
    backdrop-filter: none !important;
    background: rgba(0, 0, 0, 0.7) !important;
}

.static-game .game-info {
    backdrop-filter: none !important;
    background: rgba(0, 0, 0, 0.8) !important;
}

/* Providers section - remove blur */
.providers-section {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: none !important;
}

.provider-card {
    backdrop-filter: none !important;
    background: rgba(0, 0, 0, 0.7) !important;
}

/* Additional promos section - remove blur */
.additional-promos {
    background: transparent !important;
    backdrop-filter: none !important;
}

.promo-card {
    backdrop-filter: none !important;
    background: transparent !important;
}

/* Убеждаемся что изображения в промо-карточках видны */
.promo-card img {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Filter buttons - remove blur */
.filter-btn {
    backdrop-filter: none !important;
    background: rgba(0, 0, 0, 0.8) !important;
}

/* Button styles - remove blur for buttons in these sections */
.promo-section .cta-button,
.promo-section .cta-button-small,
.additional-promos .promo-btn {
    backdrop-filter: none !important;
    background: rgba(0, 0, 0, 0.6) !important;
}

/* Main content container - reduce blur but keep some background */
.main-content {
    background: rgba(15, 26, 15, 0.3) !important;
    backdrop-filter: blur(10px) saturate(120%) !important;
}