/* =====================================================================
   NOVAFLIX MINIMAL & ULTRA-STABLE DRIVE EMBED MODAL STYLES
   Strict zero-transform, zero-filter, zero-animation CSS rules
   ===================================================================== */

.lvp-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  background: #000000 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* Disable compositing layer bugs */
  transform: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  will-change: auto !important;
  perspective: none !important;
  animation: none !important;
  transition: none !important;
  isolation: auto !important;
}

html.lvp-open,
html.lvp-open body {
  overflow: hidden !important;
}

.lvp-wrap {
  width: 96vw;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  background: #0d0420;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #2a1b4e;
  /* Disable compositing layer bugs */
  transform: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  will-change: auto !important;
  perspective: none !important;
  animation: none !important;
  transition: none !important;
}

.lvp-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #0d0420;
  color: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  border-bottom: 1px solid #2a1b4e;
}

.lvp-title {
  font-size: 15px;
  font-weight: 600;
  color: #e9d5ff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80%;
}

.lvp-close {
  background: #1f1235;
  border: 1px solid #3b2366;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  outline: none;
}

.lvp-close:hover {
  background: #ef4444;
  border-color: #ef4444;
}

.lvp-box {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 80vh;
  background: #000000;
  position: relative;
  /* Disable compositing layer bugs */
  transform: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  will-change: auto !important;
  animation: none !important;
  transition: none !important;
}

.lvp-box iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000000;
}
