.banner-container {
    width: 100%;
    height: 854px;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.banner-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
    cursor: pointer;
}

.banner-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.banner-nav:hover {
    background-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.banner-nav.prev {
    left: 20px;
}

.banner-nav.next {
    right: 20px;
}

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

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

.banner-indicator.active {
    background-color: white;
    transform: scale(1.2);
}

@media (max-width: 1024px) {
    .banner-container {
        height: 480px;
    }

    .banner-image {
        object-fit: contain;
        background-color: #000;
    }
    
    .banner-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .banner-container {
        height: 189px;
    }

    .banner-image {
        object-fit: contain;
        background-color: #000;
    }
    
    .banner-nav {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .banner-indicator {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .banner-nav {
        width: 30px;
        height: 30px;
        font-size: 0.875rem;
    }
}
