.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-out;
    pointer-events: none;
    will-change: opacity;
}

.banner-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.banner-dot.active {
    background: white;
    width: 32px;
    border-radius: 6px;
}

.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s;
}

.banner-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.banner-prev {
    left: 2rem;
}

.banner-next {
    right: 2rem;
}

@media (max-width: 768px) {
    .banner-nav {
        width: 40px;
        height: 40px;
    }

    .banner-prev {
        left: 1rem;
    }

    .banner-next {
        right: 1rem;
    }
}
