/* ================================
   LOBBY BANNERS CAROUSEL
   ================================ */

.banners-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 10px;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(15, 15, 35, 0.6);
    backdrop-filter: blur(10px);
}

.banners-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    position: relative;
}

.banner-slide {
    min-width: 100%;
    position: relative;
    cursor: pointer;
}

.banner-slide img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.banner-slide.clickable {
    cursor: pointer;
}

.banner-slide.clickable:hover {
    opacity: 0.95;
}

/* Carousel Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-btn {
    pointer-events: all;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(255, 204, 0, 0.8);
    border-color: var(--accent-gold);
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.carousel-dot.active {
    background: var(--accent-gold);
    border-color: #fff;
    width: 14px;
    height: 14px;
}

/* Loading State */
.banners-carousel.loading {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banners-carousel.loading::after {
    content: '';
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 204, 0, 0.3);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .banners-carousel {
        margin: 0 0 1.5rem;
        border-radius: 0;
    }

    .banner-slide img {
        max-height: 200px;
        border-radius: 0;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-nav {
        padding: 0 10px;
    }

    .carousel-dots {
        bottom: 10px;
        padding: 8px 15px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    .carousel-dot.active {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .banner-slide img {
        max-height: 150px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .carousel-dots {
        gap: 8px;
    }
}