.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

.hero-carousel-track {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
}

.hero-carousel-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 300ms ease;
    pointer-events: none;
}

.hero-carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.hero-carousel-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    filter: drop-shadow(0 0 15px rgba(53, 160, 255, 0.3));
    object-fit: contain;
}

.hero-carousel-label {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
    transition: opacity 200ms ease;
}

.hero-carousel-dots {
    position: relative;
    margin-top: 0.75rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    z-index: 2;
}

.hero-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.hero-carousel-dot:hover {
    border-color: rgba(100, 181, 246, 0.6);
    background: rgba(100, 181, 246, 0.2);
}

.hero-carousel-dot.active {
    background: rgba(100, 181, 246, 0.8);
    border-color: rgba(100, 181, 246, 0.8);
}

@media (max-width: 600px) {
    .hero-carousel {
        max-width: 100%;
    }

    .hero-carousel-label {
        font-size: 0.8rem;
    }
}
