.sc-intro[hidden] {
  display: none !important;
}

body.sc-intro-active {
  overflow: hidden !important;
}

.sc-intro {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: grid;
  place-items: center;
  overflow: hidden;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(80, 119, 92, 0.25), transparent 48%),
    #07130f;
  transition: opacity 260ms ease;
}

.sc-intro.is-visible {
  opacity: 1;
}

.sc-intro.is-leaving {
  opacity: 0;
  pointer-events: none;
}

.sc-intro-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #07130f;
}

.sc-intro-controls {
  position: fixed;
  top: max(16px, env(safe-area-inset-top));
  right: max(16px, env(safe-area-inset-right));
  z-index: 2;
  display: flex;
  gap: 10px;
}

.sc-intro-button {
  min-height: 44px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 0 16px;
  color: #fff;
  background: rgba(7, 19, 15, 0.68);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  font: 700 0.78rem/1 Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sc-intro-button:hover,
.sc-intro-button:focus-visible {
  border-color: #fff;
  background: rgba(7, 19, 15, 0.9);
  outline: none;
}

.sc-intro-progress {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 4px;
  background: rgba(255, 255, 255, 0.18);
}

.sc-intro-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: #e4b63b;
  transform-origin: left center;
}

@media (prefers-reduced-motion: reduce) {
  .sc-intro {
    display: none !important;
  }
}
