/* VideoPixie py3 `web` service — supplemental styles only.
 * The header, footer, and homepage look come from the original /st CSS.
 * This file adds just the consent notice and the legal-page content column. */

/* ---- Consent notice ---- */
.vp-consent {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 99999;
  max-width: 560px; margin: 0 auto;
  background: #fff; border: 1px solid #e4e8ee; border-radius: 12px;
  box-shadow: 0 10px 40px rgba(20, 30, 45, 0.18);
  padding: 16px 18px; display: flex; flex-direction: column; gap: 12px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.vp-consent[hidden] { display: none; }
.vp-consent__text { margin: 0; font-size: 14px; color: #2b3442; line-height: 1.5; }
.vp-consent__actions { display: flex; gap: 10px; }
.vp-consent .btn {
  border: 1px solid transparent; border-radius: 8px; padding: 9px 16px;
  font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit;
}
.vp-consent .btn-primary { background: #ff4f5e; color: #fff; }
.vp-consent .btn-ghost { background: transparent; color: #5c6672; border-color: #e4e8ee; }

/* ---- Video lightbox (click-to-play example videos) ---- */
.vp-lightbox { position: fixed; inset: 0; z-index: 100000; display: flex; align-items: center; justify-content: center; }
.vp-lightbox__backdrop { position: absolute; inset: 0; background: rgba(10, 14, 20, 0.85); }
.vp-lightbox__inner { position: relative; width: min(92vw, 1024px); }
.vp-lightbox__media { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; border-radius: 8px; overflow: hidden; box-shadow: 0 20px 80px rgba(0,0,0,0.5); }
.vp-lightbox__media video, .vp-lightbox__media iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vp-lightbox__close {
  position: absolute; top: -44px; right: 0; background: transparent; border: 0;
  color: #fff; font-size: 34px; line-height: 1; cursor: pointer; padding: 4px 10px;
}
.vp-lightbox__close:hover { opacity: 0.8; }

/* ---- Legal pages (privacy / terms) ---- */
.legal-page {
  max-width: 760px; margin: 0 auto; padding: 100px 24px 72px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #2b3442; line-height: 1.65;
}
.legal-page h1 {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 32px; line-height: 1.2; margin: 0 0 6px; color: #1f2733;
}
.legal-page h2 {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 20px; margin: 30px 0 8px; color: #1f2733;
}
.legal-page a { color: #ff4f5e; }
.legal-updated { color: #5c6672; font-size: 14px; margin-top: 0; }
.legal-note {
  background: #fff8f2; border: 1px solid #ffe0c7; border-radius: 8px;
  padding: 12px 16px; font-size: 14px; color: #7a4a1e; margin: 20px 0 28px;
}
.legal-page ul { padding-left: 20px; }
.legal-page li { margin: 4px 0; }
