#video-section {
  padding: 0;
  background: var(--black);
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.section-video-dim {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 18, 0.45);
  transition: opacity 0.5s;
}

.video-play-area {
  position: relative;
  z-index: 2;
  text-align: center;
  transition: opacity 0.4s;
}

.video-play-area.playing {
  opacity: 1;
  pointer-events: auto;
}

.play-ring-outer {
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 36px;
  position: relative;
  cursor: none;
  transition: border-color 0.4s;
  animation: ringPulse 3s ease-in-out infinite;
}

.play-ring-outer:hover {
  border-color: var(--blue);
}

.play-ring-inner {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s, border-color 0.4s;
}

.play-ring-outer:hover .play-ring-inner {
  background: var(--blue-glow);
  border-color: var(--blue);
}

.play-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.8);
  margin-left: 4px;
  display: block;
}

.video-play-area.playing .play-triangle {
  width: 18px;
  height: 18px;
  border: none;
  margin-left: 0;
  position: relative;
  background: transparent;
}

.video-play-area.playing .play-triangle::before,
.video-play-area.playing .play-triangle::after {
  content: '';
  position: absolute;
  top: 0;
  width: 5px;
  height: 18px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
}

.video-play-area.playing .play-triangle::before {
  left: 0;
}

.video-play-area.playing .play-triangle::after {
  right: 0;
}

.video-caption {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.video-sub {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

@keyframes ringPulse {
  0%,  100% { box-shadow: 0 0 0 0 rgba(59, 138, 255, 0); }
  50%        { box-shadow: 0 0 0 20px rgba(59, 138, 255, 0.05); }
}
