:root {
  --paper: #f2efe8;
  --font-body: "Outfit", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  color: var(--paper);
  font-family: var(--font-body);
  background: #0e1114;
  user-select: none;
  -webkit-user-select: none;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.stage {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: #0a0c0e;
}

.reel-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0a0c0e;
  pointer-events: none;
}

.video-shield {
  position: absolute;
  inset: 0;
  z-index: 20;
  cursor: default;
}

.psst {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  z-index: 60;
  margin: 0;
  width: min(92vw, 28rem);
  text-align: center;
  color: rgba(242, 239, 232, 0.72);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.65);
  animation: psst-in 0.7s 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.psst a {
  display: inline;
  color: rgba(242, 239, 232, 0.95);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.psst a:hover {
  color: #fff;
}

@keyframes psst-in {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .psst {
    animation: none;
  }
}

.sound-gate {
  position: fixed;
  inset: 0;
  z-index: 70;
  margin: 0;
  border: 0;
  padding: 0;
  background: rgba(10, 12, 14, 0.55);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  letter-spacing: 0.02em;
  cursor: pointer;
  backdrop-filter: blur(2px);
}

.sound-gate[hidden] {
  display: none !important;
}
