.ps-c83a9a1c-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

.ps-c83a9a1c-slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.ps-c83a9a1c-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.ps-c83a9a1c-slide.ps-c83a9a1c-active {
    position: relative;
    opacity: 1;
    z-index: 2;
}

.ps-c83a9a1c-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ps-c83a9a1c-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.ps-c83a9a1c-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.ps-c83a9a1c-dot.ps-c83a9a1c-active {
    background-color: #ffffff;
}

.ps-c83a9a1c-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.ps-c83a9a1c-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

.ps-c83a9a1c-prev { left: 15px; }
.ps-c83a9a1c-next { right: 15px; }

.ps-c83a9a1c-no-images {
    text-align: center;
    padding: 40px;
    background: #f1f1f1;
    border: 2px dashed #ccc;
    color: #666;
    border-radius: 8px;
}

/* --- LIGHTWEIGHT EFFECTS --- */
.ps-effect-fade { opacity: 0; }
.ps-effect-fade.ps-c83a9a1c-active { opacity: 1; }

.ps-effect-slide-left { transform: translateX(100%); }
.ps-effect-slide-left.ps-c83a9a1c-active { transform: translateX(0); }

.ps-effect-slide-right { transform: translateX(-100%); }
.ps-effect-slide-right.ps-c83a9a1c-active { transform: translateX(0); }

.ps-effect-zoom-in { transform: scale(0.9); opacity: 0; }
.ps-effect-zoom-in.ps-c83a9a1c-active { transform: scale(1); opacity: 1; }

.ps-effect-zoom-out { transform: scale(1.1); opacity: 0; }
.ps-effect-zoom-out.ps-c83a9a1c-active { transform: scale(1); opacity: 1; }

.ps-effect-blur { filter: blur(10px); opacity: 0; }
.ps-effect-blur.ps-c83a9a1c-active { filter: blur(0px); opacity: 1; }
