.vimeo-component-iframe,
#youtube-player iframe {
    pointer-events: none;
}

.text-shadow {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.vimeo-component-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    overflow: hidden;
}

.vimeo-component-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.vimeo-component-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    cursor: pointer;
}

.vimeo-component-controls {
    position: absolute;
    top: 32px;
    left: 32px;
    z-index: 20;
    display: flex;
    gap: 16px;
    align-items: center;
    color: white;
}

.vimeo-component-play {
    width: 70px;
    height: 70px;
    border: none;
    background: none;
    cursor: pointer;
}

.vimeo-component-pause {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 25;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.vimeo-user-playing:hover .vimeo-component-pause {
    opacity: 1;
}

.vimeo-user-playing .vimeo-component-controls {
    opacity: 0;
    pointer-events: none;
}

.vimeo-error-fallback {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    background: #000;
    z-index: 30;
    text-align: center;
}
