/* Vertical video placeholder — drop your .mp4 into the <video> tag */
.video-vertical {
  position: relative;
  aspect-ratio: 9 / 16;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  border-radius: 36px;
  overflow: hidden;
  background: #0a0a0d;
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.04);
}
.video-vertical video,
.video-vertical .video-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 36px;
}
.video-vertical .video-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.03) 0 8px,
    rgba(255,255,255,0.06) 8px 16px
  ), #12121a;
  border: 1px dashed rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.5);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}
.video-vertical .video-slot .kind { color: rgba(255,255,255,0.8); font-size: 10px; }
.video-vertical .video-slot .desc {
  font-family: 'Inter', sans-serif;
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
  max-width: 220px;
}
.video-vertical .video-slot .play {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  display: grid; place-items: center;
}
.video-vertical .video-slot .play::after {
  content: ""; width: 0; height: 0;
  border-left: 14px solid rgba(255,255,255,0.7);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}
