.showcase-wrapper {
    max-width: 960px;
    margin: 0 auto;
}

.showcase-container {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #0f172a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid #334155;
}

.showcase-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

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

.showcase-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.showcase-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.8) 50%, transparent 100%);
    color: #e2e8f0;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
}

.showcase-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.8);
    color: white;
    border: 1px solid rgba(99, 102, 241, 0.3);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.showcase-nav:hover {
    background: #4f46e5;
    border-color: #4f46e5;
    transform: translateY(-50%) scale(1.05);
}

.showcase-nav.prev {
    left: 16px;
}

.showcase-nav.next {
    right: 16px;
}

.showcase-nav svg {
    width: 20px;
    height: 20px;
}

.showcase-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.showcase-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #475569;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.showcase-dot:hover {
    background: #64748b;
    transform: scale(1.1);
}

.showcase-dot.active {
    background: #6366f1;
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.5);
}

@media (max-width: 768px) {
    .showcase-nav {
        width: 40px;
        height: 40px;
    }

    .showcase-nav.prev {
        left: 8px;
    }

    .showcase-nav.next {
        right: 8px;
    }

    .showcase-caption {
        font-size: 0.85rem;
        padding: 1rem;
    }
}
