/* Слайдер */
.slider-fullwidth {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 0 20px;
    margin-bottom: 30px;
}

.carousel {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.carousel-item {
    height: 500px;
    transition: transform 0.6s ease-in-out;
}

.carousel-control-prev,
.carousel-control-next {
    background: rgba(0,0,0,0.3);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: auto 10px auto auto;
    align-self: center;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(0,0,0,0.5);
}

.carousel-indicators {
    margin-bottom: 10px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    border: none;
    margin: 0 3px;
}

.carousel-indicators .active {
    background-color: white;
}

/* Общие стили для карточек в боковой колонке */
.sidebar-card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    text-align: center;
}

.sidebar-card .card-icon i {
    display: inline-block;
}

.sidebar-card .card-title {
    margin-top: 12px;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.sidebar-card .card-subtitle {
    margin-top: 4px;
    margin-bottom: 0;
}


.contact-item {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Адаптивность */
@media (max-width: 768px) {
    .entertainment-page-banner {
        padding: 20px 0;
    }
    
    .entertainment-page-banner h1 {
        font-size: 1.8rem;
    }
    
    .carousel-item {
        height: 300px;
    }
    
    .slider-fullwidth {
        padding: 0 10px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
}

.swiper-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
    padding: 10px 0;
}

.swiper-container::-webkit-scrollbar {
    height: 6px;
}

.swiper-container::-webkit-scrollbar-track {
    background: transparent;
}

.swiper-container::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}

.swiper-container::-webkit-scrollbar-thumb:hover {
    background-color: #999;
}

.swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.swiper-slide {
    transition: transform 0.2s ease;
}

.swiper-slide:hover {
    transform: scale(1.02);
}

.slider-wrapper {
    position: relative;
}

.swiper-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
    padding: 10px 0;
    cursor: grab;
}

.swiper-container::-webkit-scrollbar {
    height: 6px;
}

.swiper-container::-webkit-scrollbar-track {
    background: transparent;
}

.swiper-container::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}

.swiper-container::-webkit-scrollbar-thumb:hover {
    background-color: #999;
}

.swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.swiper-slide {
    transition: transform 0.2s ease;
    user-select: none;
}

.swiper-slide:hover {
    transform: scale(1.02);
}

/* Стили для стрелок в попапе */
.popup-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2); /* Полупрозрачный фон */
    border: none;
    color: white; /* Цвет иконки */
    z-index: 10000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    backdrop-filter: blur(10px); /* Легкий эффект размытия фона */
}

.popup-nav:hover {
    background: rgba(255, 255, 255, 0.3); /* Более плотный фон при наведении */
}

.popup-nav.prev {
    left: 20px;
}

.popup-nav.next {
    right: 20px;
}

#close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10000; /* Чтобы кнопка закрытия была поверх стрелок */
    backdrop-filter: blur(10px); /* Легкий эффект размытия фона */
}

#close-popup:hover {
    background: rgba(255,255,255, 0.3);
}

.slider-nav:hover {
    background: rgba(0,0,0,0.8);
}



.stat-number-circle {
    /* Уже определен в основном коде */
}