/* ─── Override opacity:0 initial state for video cards ── */
.video-card {
  opacity: 1 !important;
  transform: none !important;
  animation: vfadeUp 0.45s ease both;
}

@keyframes vfadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Video Card Play Button ─────────────────────── */
.video-card { cursor: pointer; }

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.85;
}

.video-card:hover .video-play-btn {
  transform: scale(1.15);
  opacity: 1;
}

.video-play-btn svg circle {
  transition: fill 0.25s;
}

.video-card:hover .video-play-btn svg circle {
  fill: rgba(200, 169, 110, 0.7);
}

/* ─── YouTube Lightbox ───────────────────────────── */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.video-lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.vlb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
}

.vlb-close {
  position: fixed;
  top: 24px;
  right: 28px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vlb-close:hover { background: rgba(255, 255, 255, 0.15); color: #fff; }

.vlb-content {
  position: relative;
  z-index: 2;
  width: min(960px, 90vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.vlb-frame-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

.vlb-frame {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.vlb-title {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}
