.video-slider-4707fed4-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
}
.video-slider-4707fed4-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}
.video-slider-4707fed4-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}
.video-slider-4707fed4-slide video.slide-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: 0;
}
.video-slider-4707fed4-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}
.video-slider-4707fed4-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
    max-width: 800px;
}
.video-slider-4707fed4-title { margin-bottom: 15px; color: #fff; }
.video-slider-4707fed4-desc { margin-bottom: 25px; color: #eee; }
.video-slider-4707fed4-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #f2295b;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: 0.3s;
}
.video-slider-4707fed4-btn:hover { opacity: 0.9; }
.video-slider-4707fed4-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-slider-4707fed4-nav.prev { left: 10px; }
.video-slider-4707fed4-nav.next { right: 10px; }
.video-slider-4707fed4-nav svg { width: 20px; height: 20px; fill: #fff; }
.video-slider-4707fed4-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}
.video-slider-4707fed4-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}
.video-slider-4707fed4-dot.active { background: #fff; }