
.rkvc-wrapper {
    position: relative;
    width: 100%;
}

.rkvc-swiper {
    padding: 60px 0;
}

.rkvc-slide {
    width: 300px;
    transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
}

.rkvc-slide:not(.swiper-slide-active) {
    opacity: 0.45;
    transform: scale(0.94);
    filter: blur(10px);
}

.rkvc-slide.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.rkvc-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    background: #000;
}

.rkvc-wrapper[data-ratio="16:9"] .rkvc-video-container {
    aspect-ratio: 16/9;
}

.rkvc-wrapper[data-ratio="4:5"] .rkvc-video-container {
    aspect-ratio: 4/5;
}

.rkvc-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rkvc-play-button {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 5;
}

.rkvc-play-button::after {
    content: '';
    position: absolute;
    left: 28px;
    top: 22px;
    border-left: 18px solid black;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.rkvc-meta {
    text-align: center;
    margin-top: 20px;
    font-family: Graphik, -apple-system, BlinkMacSystemFont, sans-serif;
}

.rkvc-number {
    font-size: 14px;
    opacity: 0.6;
}

.rkvc-title {
    font-size: 18px;
    font-weight: 600;
}

.rkvc-nav {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    background: black;
    border-radius: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 20;
}

.rkvc-prev {
    left: 20px;
}

.rkvc-next {
    right: 20px;
}
