.video-showcase {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(253, 197, 107, 0.25) 0%, rgba(149, 145, 252, 0.2) 100%);
    text-align: center;
    max-width: unset;
}

.video-showcase .container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Оформление заголовка как у новинок */
.video-showcase__title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.video-showcase__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.video-showcase__text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.video-showcase__slider-wrapper {
    position: relative;
    padding: 0 40px;
}

.video-showcase__slider {
    margin: 0 -10px;
}

.video-showcase__slide {
    padding: 0 10px;
}

.video-showcase__player-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 9/16;
    max-height: 450px;
}

.video-showcase__player-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.video-showcase__player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Убираем затемнение с элементов управления */
.video-showcase__player::-webkit-media-controls-panel {
    background: rgba(0, 0, 0, 0.3);
    /* Легкая прозрачность вместо затемнения */
}

.video-showcase__player::-webkit-media-controls-play-button,
.video-showcase__player::-webkit-media-controls-volume-slider,
.video-showcase__player::-webkit-media-controls-mute-button {
    filter: none;
    /* Убираем инверсию цвета */
    opacity: 0.9;
}

/* Стили для стрелок Owl Carousel */
.video-showcase__slider .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.video-showcase__slider .owl-prev,
.video-showcase__slider .owl-next {
    width: 50px;
    height: 50px;
    background: var(--accent-color) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--color-white) !important;
    font-size: 24px !important;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.video-showcase__slider .owl-prev:hover,
.video-showcase__slider .owl-next:hover {
    background: var(--dark-color) !important;
    transform: scale(1.1);
}

.video-showcase__slider .owl-prev {
    left: -60px;
}

.video-showcase__slider .owl-next {
    right: -60px;
}

/* Убираем точки */
.video-showcase__slider .owl-dots {
    display: none !important;
}

/* ===== АНИМАЦИИ ДЛЯ БЛОКА ВИДЕО ===== */
.video-showcase[data-animate-on-scroll] .video-showcase__title[data-animate="fadeInDown"] {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.6s ease-out;
}

.video-showcase[data-animate-on-scroll] .video-showcase__title[data-animate="fadeInDown"].animated {
    opacity: 1;
    transform: translateY(0);
}

.video-showcase[data-animate-on-scroll] .video-showcase__text[data-animate="fadeInDown"] {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.6s ease-out;
}

.video-showcase[data-animate-on-scroll] .video-showcase__text[data-animate="fadeInDown"].animated {
    opacity: 1;
    transform: translateY(0);
}

.video-showcase[data-animate-on-scroll] .video-showcase__slide[data-animate="fadeInUp"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.video-showcase[data-animate-on-scroll] .video-showcase__slide[data-animate="fadeInUp"].animated {
    opacity: 1;
    transform: translateY(0);
}

/* Адаптивность */
@media (max-width: 1200px) {
    .video-showcase__slider-wrapper {
        padding: 0 50px;
    }
}

@media (max-width: 900px) {
    .video-showcase__player-wrapper {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .video-showcase {
        padding: 50px 15px;
    }

    .video-showcase__title {
        font-size: 2rem;
    }

    .video-showcase__slider-wrapper {
        padding: 0 40px;
    }

    .video-showcase__player-wrapper {
        max-height: 380px;
    }
    
    /* Стрелки для мобильных */
    .video-showcase__slider .owl-prev,
    .video-showcase__slider .owl-next {
        width: 40px;
        height: 40px;
        font-size: 20px !important;
    }
    
    .video-showcase__slider .owl-prev {
        left: -45px;
    }
    
    .video-showcase__slider .owl-next {
        right: -45px;
    }
}

@media (max-width: 600px) {
    .video-showcase__slider-wrapper {
        padding: 0 35px;
    }

    .video-showcase__player-wrapper {
        max-height: 450px;
    }

    .video-showcase__title {
        font-size: 1.75rem;
    }

    .video-showcase__text {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .video-showcase__slider .owl-prev,
    .video-showcase__slider .owl-next {
        width: 35px;
        height: 35px;
        font-size: 18px !important;
    }
    
    .video-showcase__slider .owl-prev {
        left: -40px;
    }
    
    .video-showcase__slider .owl-next {
        right: -40px;
    }
}

@media (max-width: 480px) {
    .video-showcase__player-wrapper {
        max-height: 400px;
    }
    
    .video-showcase__title {
        font-size: 1.6rem;
    }
    
    .video-showcase__slider-wrapper {
        padding: 0 30px;
    }
}