
:root {
  --pink:       #e6007e;
  --blue:       #009fe3;
  --grad:       linear-gradient(135deg, #e6007e 0%, #009fe3 100%);
  --dark:       #0d0d0d;
  --dark-600:   #1a1a1a;
  --dark-400:   #2e2e2e;
  --grey-500:   #676767;
  --grey-400:   #888888;
  --grey-100:   #e0e0e0;
  --white:      #ffffff;

  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-serif:   'EB Garamond', Georgia, serif;
  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-body:    'Poppins', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --radius-lg: 16px;
  --radius-sm: 4px;
  --grid-max: 2000px;
  --grid-margin: clamp(24px, 5vw, 80px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--dark);
  color: var(--grey-100);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

.vp-section {
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 100px) var(--grid-margin);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vp-header {
  text-align: center;
  margin-bottom: 40px;
}

.vp-eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

.vp-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 10px;
}

.vp-sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--grey-400);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── Video Container ────────────────────────────────────── */

.vp-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-600);
  border: 1px solid var(--dark-400);
}

.vp-ratio {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.vp-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s var(--ease-out);
}

.vp-poster.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.vp-poster-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vp-poster-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  transition: background 0.3s ease;
}

.vp-poster:hover .vp-poster-overlay {
  background: rgba(0,0,0,0.15);
}

.vp-play-btn {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(230,0,126,0.35);
  outline: 2px solid transparent;
  outline-offset: 4px;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    outline-color 0.3s ease;
}

.vp-poster:hover .vp-play-btn {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(0,159,227,0.35), 0 0 20px rgba(0,159,227,0.25);
  outline-color: rgba(0,159,227,0.8);
}

.vp-play-btn svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
  fill: var(--white);
}

.vp-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vp-caption {
  font-size: 12px;
  color: var(--grey-500);
  text-align: center;
  margin-top: 16px;
  max-width: 900px;
}

@media (max-width: 800px) {
  .vp-headline { font-size: clamp(1.8rem, 6vw, 2.5rem); }
  .vp-play-btn { width: 60px; height: 60px; }
  .vp-play-btn svg { width: 20px; height: 20px; }
}

@media (max-width: 500px) {
  .vp-play-btn { width: 52px; height: 52px; }
  .vp-play-btn svg { width: 18px; height: 18px; }
  .vp-container { border-radius: 12px; }
}

