/* Advanced Smart Slider Styles */
.ass-slider-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    min-height: 420px;
    background-color: #000;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.ass-slider-container.ass-initialized {
    opacity: 1;
}

.ass-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(10px) brightness(0.7);
    opacity: 0.7;
    transition: opacity 1.5s ease-in-out, background-image 1.5s ease-in-out;
    z-index: 1;
}

.ass-scene {
    width: 100%;
    height: 100%;
    perspective: 2000px;
    position: relative;
    z-index: 3;
    min-height: 420px;
}

.ass-slider-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px;
}

.ass-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
}

.ass-card {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    transition: all 1.1s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
    transform: scale(0.85);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform, opacity;
}

/* Active card in center */
.ass-card.active {
    opacity: 1;
    transform: translateX(0) scale(1) translateZ(50px);
    z-index: 10;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
}

/* Side positions - always visible */
.ass-card.pos1 {
    transform: translateX(-320px) scale(0.9) translateZ(30px);
    opacity: 0.8;
    z-index: 9;
}

.ass-card.pos2 {
    transform: translateX(320px) scale(0.9) translateZ(30px);
    opacity: 0.8;
    z-index: 9;
}

.ass-card.pos3 {
    transform: translateX(-640px) scale(0.8) translateZ(20px);
    opacity: 0.5;
    z-index: 8;
}

.ass-card.pos4 {
    transform: translateX(640px) scale(0.8) translateZ(20px);
    opacity: 0.5;
    z-index: 8;
}

/* For many images, distant ones are still visible */
.ass-card:not(.active):not(.pos1):not(.pos2):not(.pos3):not(.pos4) {
    opacity: 0