.mps-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.mps-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.mps-slide.active {
    opacity: 1;
}

.mps-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    color: #fff;
    text-align: center;
}

.mps-text {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.mps-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.mps-button:hover {
    background-color: #0056b3;
}

.mps-frame-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Анимации */
.mps-slide[data-animation="fade"] {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.mps-slide[data-animation="slide"] {
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out;
}

.mps-slide[data-animation="slide"].active {
    transform: translateX(0);
}

.mps-slide[data-animation="zoom"] {
    transform: scale(1.1);
    transition: transform 0.5s ease-in-out;
}

.mps-slide[data-animation="zoom"].active {
    transform: scale(1);
} 