body.wp-mvp-blur-bg {
    filter: blur(8px) brightness(0.7);
    transition: filter 0.4s;
}
.wp-mvp-wrapper {
    position: relative;
    width: 1296px;
    height: 700px;
    margin: 0 auto;
    z-index: 10;
}
.wp-mvp-video {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    background: #000;
    object-fit: cover;
    z-index: 20;
    position: relative;
}
.wp-mvp-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #00c3ff 0%, #0047ab 100%);
    box-shadow: 0 4px 24px rgba(0, 71, 171, 0.25), 0 1.5px 6px rgba(0,0,0,0.10);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 30;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.wp-mvp-play-btn:hover {
    background: linear-gradient(135deg, #0047ab 0%, #00c3ff 100%);
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(0, 71, 171, 0.35), 0 2px 8px rgba(0,0,0,0.15);
}
.wp-mvp-play-btn svg {
    width: 38px;
    height: 38px;
    fill: #fff;
    filter: drop-shadow(0 2px 8px rgba(0,195,255,0.25));
}
.wp-mvp-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 40;
    transition: background 0.2s;
}
.wp-mvp-close-btn:hover {
    background: rgba(0,0,0,0.9);
}
.wp-mvp-close-btn svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.wp-mvp-blur-bg-layer {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 5;
    background-size: cover;
    background-position: center;
    filter: blur(18px) brightness(0.5);
    pointer-events: none;
    transition: opacity 0.4s;
    opacity: 1;
    display: none;
}
.wp-mvp-blur-bg-layer.active {
    display: block;
    opacity: 1;
}

@media (max-width: 900px) {
  .wp-mvp-wrapper {
    width: 100% !important;
    height: auto !important;
    max-width: 100vw;
    aspect-ratio: 16/9;
    min-height: 200px;
    border-radius: 0;
  }
  .wp-mvp-video {
    border-radius: 0;
    width: 100% !important;
    height: 100% !important;
    min-height: 200px;
    max-height: 60vw;
  }
  .wp-mvp-play-btn {
    width: 60px;
    height: 60px;
  }
  .wp-mvp-play-btn svg {
    width: 32px;
    height: 32px;
  }
  .wp-mvp-close-btn {
    width: 32px;
    height: 32px;
    top: 8px;
    right: 8px;
  }
  .wp-mvp-close-btn svg {
    width: 18px;
    height: 18px;
  }
}
