.ss-9bdeaaee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
}
.ss-9bdeaaee-track {
    position: relative;
    width: 100%;
    height: 100%;
}
.ss-9bdeaaee-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;
    z-index: 1;
}
.ss-9bdeaaee-slide.active {
    opacity: 1;
    z-index: 2;
}
.ss-9bdeaaee-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.3s;
}
.ss-9bdeaaee-arrow svg {
    fill: currentColor;
}
.ss-9bdeaaee-arrow:hover {
    background: rgba(0,0,0,0.8);
}
.ss-9bdeaaee-arrow.prev {
    left: 15px;
}
.ss-9bdeaaee-arrow.next {
    right: 15px;
}
.ss-9bdeaaee-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}
.ss-9bdeaaee-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
}
.ss-9bdeaaee-dot.active {
    background: #fff;
}