/* Выключаем фон только для страницы О клубе */
.back-photo {
    display: none !important;
}

/* Стили для слайдера */
.multi-swiper {
    width: 100%;
    height: 400px;
    margin: 40px auto;
    padding: 20px 0;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0.7;
    transform: scale(0.8);
    filter: brightness(0.8);
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.swiper-slide-active img {
    transform: scale(1.05);
}

.swiper-slide a {
    width: 100%;
    height: 100%;
    display: block;
}

/* Навигация */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    display: flex !important; /* Важно для Swiper 11 */
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0,0,0,0.8);
    transform: scale(1.1);
}

/* Пагинация */
.swiper-pagination {
    position: relative !important;
    margin-top: -20px;
}

.swiper-pagination-bullet {
    background: rgb(255, 255, 255);
    opacity: 0.5;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #ff3366;
    opacity: 1;
    transform: scale(1.2);
}

/* АДАПТИВНОСТЬ */

/* Для планшетов (768px - 1024px) */
@media (max-width: 1024px) {
    .multi-swiper {
        height: 350px;
        margin: 30px auto;
        padding: 15px 0;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 18px;
    }
}

/* Для мобильных (до 768px) */
@media (max-width: 768px) {
    .multi-swiper {
        height: 300px;
        margin: 20px auto;
        padding: 10px 0;
    }

    .swiper-slide {
        border-radius: 8px;
    }

    /* На мобильных скрываем кнопки навигации, оставляем только пагинацию */
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    .swiper-pagination {
        margin-top: -15px;
    }

    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}

/* Для маленьких мобильных (до 480px) */
@media (max-width: 480px) {
    .multi-swiper {
        height: 250px;
        margin: 15px auto;
        padding: 5px 0;
    }

    .swiper-slide {
        border-radius: 6px;
    }

    .swiper-pagination {
        margin-top: -10px;
    }

    /* Стили для отдельного Swiper вне табов */
    .separate-swiper {
        margin: 40px auto;
        max-width: 1200px;
        height: 400px;
    }

    /* Адаптивность для отдельного Swiper */
    @media (max-width: 1024px) {
        .separate-swiper {
            height: 350px;
        }
    }

    @media (max-width: 768px) {
        .separate-swiper {
            height: 300px;
            margin: 30px auto;
        }
    }

    @media (max-width: 480px) {
        .separate-swiper {
            height: 250px;
            margin: 20px auto;
        }
    }
}