.video-showcase {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.video-carousel {
    position: relative;
    max-width: 500px;
    height: 890px;
    margin: 60px auto 0;
    border-radius: 32px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.video-carousel-track,
.video-slide,
.video-slide video {
    width: 100%;
    height: 100%;
}

.video-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
}

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

.video-slide video {
    display: block;
    object-fit: contain;
}

.video-carousel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 45%);
    pointer-events: none;
}

.video-carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    transform: translateY(-50%);
    background: rgba(122, 75, 180, 0.92);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, background 0.25s ease;
}

.video-carousel-arrow:hover {
    background: rgba(100, 54, 165, 1);
    transform: translateY(-50%) scale(1.08);
}

.video-carousel-arrow span {
    font-size: 54px;
    line-height: 1;
    margin-top: -4px;
}

.video-carousel-prev {
    left: 28px;
}

.video-carousel-next {
    right: 28px;
}

.video-carousel-caption {
    position: absolute;
    left: 42px;
    right: 42px;
    bottom: 54px;
    z-index: 2;
    text-align: center;
}

.video-carousel-caption h3 {
    color: #fff;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.video-carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 5px;
    z-index: 4;
    display: flex;
    gap: 14px;
    transform: translateX(-50%);
}

.video-dot {
    width: 1px;
    height: 1px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
}

.video-dot.active,
.video-dot:hover {
    background: #eeeeee;
    transform: scale(0.95);
}

@media (max-width: 992px) {
    .video-carousel {
        height: 520px;
        border-radius: 26px;
    }
}

@media (max-width: 640px) {
    .video-showcase {
        padding: 80px 0;
    }

    .video-carousel {
        height: 430px;
        margin-top: 40px;
        border-radius: 22px;
    }

    .video-carousel-arrow {
        width: 46px;
        height: 46px;
    }

    .video-carousel-arrow span {
        font-size: 42px;
    }

    .video-carousel-prev {
        left: 14px;
    }

    .video-carousel-next {
        right: 14px;
    }

    .video-carousel-caption h3 {
        font-size: 24px;
    }
}
