.global-narrowvideo {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.gnv-bg-gif {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: opacity 0.4s ease;
}

.gnv-bg-gif.is-paused {
  opacity: 0.3;
}

.gnv-dimmer {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  pointer-events: none;
}

.gnv-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  max-width: 1100px;
  margin-inline: auto;
}

.gnv-content {
  flex: 1;
  min-width: 0;
  max-width: 520px;
}

.gnv-tagline {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.gnv-heading {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  line-height: var(--lh-tight);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.gnv-desc {
  font-size: var(--fs-l);
  line-height: var(--lh-relaxed);
  margin: 0;
  max-width: 480px;
}

.gnv-text--light .gnv-heading {
  color: var(--color-white);
}

.gnv-text--light .gnv-desc {
  color: rgba(255, 255, 255, 0.85);
}

.gnv-text--dark .gnv-heading {
  color: var(--color-heading);
}

.gnv-text--dark .gnv-desc {
  color: var(--color-text);
}

.gnv-play-wrap {
  flex-shrink: 0;
  flex-basis: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  position: relative;
}

.gnv-play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  cursor: pointer;
  color: var(--color-white);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
  padding: 0;
}

.gnv-play-btn:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: var(--color-white);
  transform: scale(1.06);
}

.gnv-play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 3px;
}

.gnv-play-label {
  font-size: var(--fs-s);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.gnv-video-embed {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-black);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.gnv-video-embed iframe,
.gnv-video-embed video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.gnv-video-embed[hidden] {
  display: none;
}

@media (max-width: 768px) {
  .gnv-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xl);
  }

  .gnv-content {
    max-width: 100%;
  }

  .gnv-heading {
    font-size: var(--fs-h3);
  }

  .gnv-play-wrap {
    align-self: center;
    width: 100%;
    align-items: center;
  }

  .gnv-video-embed {
    width: min(90vw, 480px);
  }
}
