/* =========================================================
   tap-gate.css — the very first screen: one natural tap that
   captures a trusted user gesture so everything after it can
   play with sound automatically, with no further clicks.
   ========================================================= */

.tap-gate {
  position: fixed;
  inset: 0;
  z-index: 1000; /* above everything, including the loader */
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  cursor: pointer;
  transition: opacity 0.4s ease;
}

.tap-gate.tap-gate--hidden {
  opacity: 0;
  pointer-events: none;
}

.tap-gate__brand {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-white);
  font-size: clamp(26px, 7vw, 44px);
}

.tap-gate__hint {
  font-family: var(--font-body);
  font-weight: 800;
  color: var(--color-neon-green);
  font-size: clamp(15px, 4vw, 20px);
  padding: 12px 24px;
  border: 2px solid var(--color-neon-green);
  border-radius: 999px;
  animation: tapHintPulse 1.3s ease-in-out infinite;
}

@keyframes tapHintPulse {
  0%, 100% {
    box-shadow: 0 0 6px 1px var(--color-neon-green);
    opacity: 0.85;
  }
  50% {
    box-shadow: 0 0 18px 6px var(--color-neon-green);
    opacity: 1;
  }
}
