.vs-d8ea1cc5-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
}
.vs-d8ea1cc5-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}
.vs-d8ea1cc5-slide iframe,
.vs-d8ea1cc5-slide video,
.vs-d8ea1cc5-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.vs-d8ea1cc5-slide iframe {
    pointer-events: none; /* Helps hide iframe interactions if overlayed */
}
.vs-d8ea1cc5-placeholder {
    color: #fff;
    text-align: center;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    position: absolute;
}
.vs-d8ea1cc5-placeholder i {
    font-size: 48px;
}
.vs-d8ea1cc5-content {
    position: absolute;
    z-index: 10;
    text-align: center;
    width: 80%;
    max-width: 800px;
    pointer-events: none; /* Let clicks pass through to video controls if present */
}
.vs-d8ea1cc5-content * {
    pointer-events: auto; /* Re-enable clicks on text/buttons */
}
.vs-d8ea1cc5-title {
    margin: 0 0 15px;
    font-size: 32px;
}
.vs-d8ea1cc5-desc {
    margin: 0 0 20px;
    font-size: 18px;
}
.vs-d8ea1cc5-btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    transition: opacity 0.3s;
}
.vs-d8ea1cc5-btn:hover {
    opacity: 0.9;
}

/* Base state for animated elements before animation triggers */
.vs-d8ea1cc5-content [data-animation] {
    opacity: 0;
    animation-duration: 1.2s;
    animation-fill-mode: both;
}