.vs-slider {
    position: relative;
    width: 100%;
    height: var(--vs-height, 500px);
    overflow: hidden;
    border-radius: 8px;
    background: #000;
    touch-action: pan-y;
}

.vs-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.45s ease;
    will-change: transform;
}

.vs-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    background: #111;
}

.vs-media {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.vs-embed-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.vs-embed-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vs-embed-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.vs-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.85);
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

.vs-play-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.08);
}

.vs-play-btn.is-hidden {
    display: none;
}

.vs-caption {
    position: absolute;
    left: 24px;
    bottom: 24px;
    right: 24px;
    color: #fff;
    font-size: 1.1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.vs-caption a {
    color: #fff;
    text-decoration: underline;
}

.vs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.vs-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

.vs-prev { left: 16px; }
.vs-next { right: 16px; }

.vs-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.vs-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.vs-dot.active {
    background: #fff;
    transform: scale(1.2);
}

@media (max-width: 600px) {
    .vs-caption { font-size: 0.95rem; left: 14px; right: 14px; bottom: 14px; }
    .vs-arrow { width: 36px; height: 36px; }
    .vs-play-btn { width: 52px; height: 52px; }
}
