.video-player-wrapper-28083d5b {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}
.video-player-bg-28083d5b {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.video-player-overlay-28083d5b {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
    transition: background-color 0.3s;
}
.play-btn-28083d5b {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
    backdrop-filter: blur(4px);
    animation: pulse-28083d5b 2s infinite;
    transition: all 0.3s ease;
}
.play-btn-28083d5b svg {
    transition: fill 0.3s ease;
}
@keyframes pulse-28083d5b {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
.video-container-28083d5b {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: none;
    background: #000;
}
.video-container-28083d5b iframe,
.video-container-28083d5b video {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
}
.is-playing-28083d5b .video-player-bg-28083d5b,
.is-playing-28083d5b .video-player-overlay-28083d5b,
.is-playing-28083d5b .play-btn-28083d5b {
    display: none;
}
.is-playing-28083d5b .video-container-28083d5b {
    display: block;
}