.joyride-slider-container {
    width: 100%;
    min-height: 590px;
    background-size: 200% auto;
    background-image: linear-gradient(to right, #C13B40 0%, #0E0E0E 51%, #C13B40 100%);
    padding: 40px 0 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.joyride-slider {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    perspective: 2000px;
    perspective-origin: center center;
    height: 510px;
    overflow: visible;
    padding: 0 80px;
}

.joyride-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.joyride-slide {
    position: absolute;
    width: 380px;
    height: 580px;
    left: 50%;
    top: 50%;
    margin-left: -190px;
    margin-top: -280px;
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backface-visibility: hidden;
    will-change: transform;
}

/* Center slide (active) - no rotation, slightly smaller */
.joyride-slide-active {
    width: 400px;
    height: 510px;
    margin-left: -200px;
    margin-top: -255px;
    z-index: 5;
    transform: translateX(0) translateZ(0) rotateY(0deg) scale(1) !important;
    opacity: 1 !important;
}

/* Slide image */
.joyride-slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    transform-style: preserve-3d;
}

.joyride-slide-active .joyride-slide-image {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

/* Coverflow effect - slides curve backward */
.joyride-slide:not(.joyride-slide-active) .joyride-slide-image {
    filter: brightness(0.7);
}

/* Slide content overlay (for active slide) */
.joyride-slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    padding: 30px 40px;
    color: white;
    pointer-events: none;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.joyride-slide-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 1;
    margin: 0px 0 5px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgb(0 0 0);
}

.joyride-slide-description {
    font-size: 16px;
	line-height: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 1);
    margin-bottom: 15px;
}

/* Read More Button */
.joyride-slide-readmore {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 0px;
    background-size: 200% auto;
    background-image: linear-gradient(to right, #C13B40 0%, #363535 51%, #C13B40 100%);
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.joyride-slide-readmore:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.joyride-slide-readmore:active {
    transform: translateY(0);
}

/* Navigation arrows */
.joyride-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50% !important;
    padding: 0 !important;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.joyride-nav:hover {
    background: rgb(193, 59, 64, 0.2);
    border-color: #C13B40;
    transform: translateY(-50%) scale(1.1);
}

.joyride-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.joyride-nav-prev {
    left: 20px;
}

.joyride-nav-next {
    right: 20px;
}

.joyride-nav svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2.5;
}

.joyride-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.joyride-nav:disabled:hover {
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
}

.cloud {
    overflow: hidden;
}

.cloud {
    overflow: hidden;
}

.cloud img {
    max-width: 100%;
    position: absolute;
    bottom: 0px;
    opacity: 0.6;
    /* start fully visible */
    /*left: calc(var(--i) * 20%);*/
    animation: cloudMove 40s linear infinite;
    animation-delay: calc(-8s * var(--i));
    /*animation: cloudMove calc(8s * var(--i)) linear infinite;*/
}

@keyframes cloudMove {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .joyride-slider {
        max-width: 100%;
        padding: 0 60px;
    }
    
    .joyride-slide {
        width: 350px;
        height: 450px;
        margin-left: -175px;
        margin-top: -225px;
    }
    
    .joyride-slide-active {
        width: 380px;
        height: 480px;
        margin-left: -190px;
        margin-top: -240px;
    }
}

@media (max-width: 768px) {
    .joyride-slider-container {
        padding: 30px 0;
        min-height: 500px;
    }
    
    .joyride-slider {
        height: 470px;
        padding: 0 50px;
    }
    
    .joyride-slide {
        width: 340px;
        height: 440px;
        margin-left: -170px;
        margin-top: -220px;
    }
    
    .joyride-slide-active {
        width: 355px;
        height: 470px;
        margin-left: -177.5px;
        margin-top: -235px;
    }
    
    
    .joyride-slide-title {
        font-size: 36px;
        letter-spacing: 2px;
    }
    
    .joyride-slide-content {
        padding: 30px 20px;
    }
    
    .joyride-slide-readmore {
        padding: 10px 25px;
        font-size: 12px;
    }
    
    .joyride-nav {
        width: 40px;
        height: 40px;
    }
    
    .joyride-nav svg {
        width: 20px;
        height: 20px;
    }
    
    .joyride-nav-prev {
        left: 10px;
    }
    
    .joyride-nav-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .joyride-slider-container {
        min-height: 400px;
    }
    
    .joyride-slider {
        height: 400px;
        padding: 0 40px;
    }
    
    .joyride-slide {
        width: 270px;
        height: 380px;
        margin-left: -135px;
        margin-top: -190px;
    }
    
    .joyride-slide-active {
        width: 285px;
        height: 410px;
        margin-left: -142.5px;
        margin-top: -205px;
    }
    
    .joyride-slide-title {
        font-size: 28px;
        letter-spacing: 1px;
    }
    
    .joyride-slide-description {
        font-size: 12px;
    }
    
    .joyride-slide-content {
        padding: 20px 15px;
    }
    
    .joyride-slide-readmore {
        padding: 8px 20px;
        font-size: 11px;
    }
}

/* Loading state */
.joyride-slider.loading .joyride-slide {
    opacity: 0;
}

/* Smooth transitions for all states */
.joyride-slide * {
    transition: opacity 0.3s ease;
}