.mvc-36589-wrapper {
    width: 100%;
    padding: 20px 0 40px;
    overflow: hidden;
    position: relative;
}

.mvc-36589-carousel {
    width: 100%;
    overflow: visible;
}

.mvc-36589-slide {
    width: 400px; /* Default, overridden by controls */
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 768px) {
    .mvc-36589-slide {
        width: 85% !important;
    }
}

.mvc-36589-card {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    background-color: #1a1a1a;
    aspect-ratio: 16/9; /* Default, overridden by controls */
}

.mvc-36589-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

/* Hover Effect */
.mvc-36589-slide:hover .mvc-36589-card {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    z-index: 10;
}

.mvc-36589-slide:hover .mvc-36589-image {
    transform: scale(1.05);
}

.mvc-36589-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.mvc-36589-title {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.mvc-36589-play-btn {
    color: #fff;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    padding: 8px;
    backdrop-filter: blur(4px);
    display: flex;
}

.mvc-36589-slide:hover .mvc-36589-play-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Controls */
.mvc-36589-next,
.mvc-36589-prev {
    color: #fff;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mvc-36589-wrapper:hover .mvc-36589-next,
.mvc-36589-wrapper:hover .mvc-36589-prev {
    opacity: 1;
}

.mvc-36589-next:after,
.mvc-36589-prev:after {
    font-size: 18px;
    font-weight: bold;
}

/* Modal */
.mvc-36589-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.mvc-36589-modal.active {
    display: flex;
}

.mvc-36589-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.mvc-36589-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    z-index: 10000;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.mvc-36589-video-container {
    width: 100%;
    height: 100%;
}

.mvc-36589-video-container video,
.mvc-36589-video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.mvc-36589-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    z-index: 10001;
}