.selene-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.selene-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.selene-carousel-slide.active {
    opacity: 1;
}

.selene-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.selene-carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.selene-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.selene-carousel-dot.active {
    background: #ffffff;
} 