/* ─── Video Showcase ─────────────────────────────────────── */
.video-section {
  padding: 0 0 80px;
  background: #ffffff;
}

.video-frame-wrap {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 6px;
  box-shadow: var(--shadow-player);
}

.video-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0c0c0e;
  border-radius: calc(var(--radius-lg) - 4px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Placeholder state — replace inner content with <video> tag when ready */
.video-placeholder-state {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 24px;
  background: radial-gradient(ellipse at 50% 40%, #1a1a1f 0%, #0c0c0e 100%);
  color: #ffffff;
}

.video-play-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 0 0 10px rgba(225, 29, 72, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.video-play-icon:hover {
  transform: scale(1.06);
  box-shadow: 0 0 0 14px rgba(225, 29, 72, 0.22);
}

.video-placeholder-label {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #f1f1f3;
}

.video-placeholder-sub {
  font-size: 13px;
  color: #71717a;
  max-width: 380px;
  line-height: 1.5;
}

/* Smart Autoplay overlay demo pill */
.autoplay-pill-demo {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(12, 12, 14, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.10);
  color: #ffffff;
  padding: 7px 15px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  pointer-events: none;
  white-space: nowrap;
}

.autoplay-pill-demo i { color: var(--red); font-size: 14px; }

/* Progress bar demo */
.progress-demo {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.12);
}

.progress-demo-fill {
  width: 35%;
  height: 100%;
  background: var(--red);
}

@media (max-width: 768px) {
  .video-section { padding: 0 0 52px; }
}
