.mcs-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.mcs-slider {
    display: flex;
    transition: none;
}

.mcs-slide {
    min-width: 100%;
    position: relative;
    display: none;
}

.mcs-slide.active {
    display: block;
}

.mcs-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

/* Caption Overlay */
.mcs-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 20px 40px;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
}

/* Arrows */
.mcs-prev, .mcs-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    font-size: 40px;
    padding: 10px 18px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.mcs-prev:hover, .mcs-next:hover {
    background: rgba(255,255,255,0.5);
}

.mcs-prev { left: 15px; }
.mcs-next { right: 15px; }

/* Dots */
.mcs-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
}

.mcs-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.mcs-dot.active {
    background: #fff;
}