/* ============================================================
   Video Player — pay-homage-music-vid
   ============================================================ */

/* ── Section heading ────────────────────────────────────────── */
.vp-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.12em;
  color: var(--white);
  text-align: center;
  margin: 48px 0 16px;
  text-transform: uppercase;
}

/* ── Player article wrapper ─────────────────────────────────── */
.inner-article--player {
  padding-bottom: 0;
  border-bottom: 1px solid #1a1a1a;
  margin-bottom: 0;
}

.vp-wrap {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 24px auto 0;
  aspect-ratio: 16 / 9;
  background: #000 url('/assets/img/pay-homage-album-cover.jpg') center center / cover no-repeat;
  overflow: hidden;
  border: 1px solid #1a1a1a;
  cursor: url('/assets/img/cursor-keys.png') 40 10, pointer;
}

/* Dark overlay on thumbnail — add .vp-wrap--dimmed to enable */
.vp-wrap--dimmed::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  z-index: 3;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.vp-wrap--dimmed.is-playing::before {
  opacity: 0;
}

/* ── Video ─────────────────────────────────────────────────── */
.vp-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  opacity: 1;
}

/* ── Bars overlay ───────────────────────────────────────────── */
.vp-bars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 4;
  pointer-events: none;
  opacity: 1;
}

.vp-bars--lighten {
  filter: brightness(8) saturate(0) contrast(0.5);
}

.vp-wrap.is-playing .vp-bars {
  opacity: 0;
  pointer-events: none;
}

/* ── "Unlock the Bars" label ────────────────────────────────── */
.vp-label {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 4;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  letter-spacing: 0.18em;
  color: #fff;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.vp-wrap.is-playing .vp-label {
  opacity: 0;
}

/* ── Play button ────────────────────────────────────────────── */
.vp-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80px;
  height: 80px;
  z-index: 3;
  background: none;
  border: none;
  padding: 0;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, opacity 0.4s ease;
}

.vp-play-btn:hover {
  transform: scale(1.15);
}

.vp-play-icon {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.5));
}

.vp-wrap.is-playing .vp-play-btn {
  opacity: 0;
  pointer-events: none;
}
