.chs-slider {
    width: 100%;
    height: var(--slider-height, 600px);
    position: relative;
    overflow: hidden;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    transition: transform 0.5s ease;
}

.chs-slide-content {
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 15px;
    max-width: 80%;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.swiper-slide-active .chs-slide-content {
    transform: translateY(0);
    opacity: 1;
}

.chs-slide-content[data-animation="fade-in"] {
    animation: fadeIn 0.8s ease forwards;
}

.chs-slide-content[data-animation="slide-up"] {
    animation: slideUp 0.8s ease forwards;
}

.chs-slide-content[data-animation="zoom-in"] {
    animation: zoomIn 0.8s ease forwards;
}

.chs-slide-title {
    font-size: 3em;
    margin: 0 0 10px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    font-weight: bold;
}

.chs-slide-subtitle {
    font-size: 1.5em;
    margin: 0 0 20px;
    line-height: 1.4;
}

.chs-slide-button {
    display: inline-block;
    padding: 12px 25px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.chs-slide-button:hover {
    background: #005177;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #0073aa;
    opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transition: background 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.6);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .chs-slider {
        height: var(--slider-height, 400px);
    }
    .chs-slide-title {
        font-size: 2em;
    }
    .chs-slide-subtitle {
        font-size: 1.2em;
    }
    .chs-slide-content {
        padding: 20px;
    }
}