:root{
  --bg:#000;
  --fg:#fff;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  background:var(--bg);
  color:var(--fg);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow:hidden;
}

.stage{
  position:relative;
  width:100%;
  height:100%;
  background:#000;
}

/* Video fills screen */
.bgVideo{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover; /* key for filling */
  background:#000;
}

/* Mood overlay (safe on both) */
.vignette{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 50% 40%, rgba(0,0,0,.0) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.72) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.35));
}

/* Fullscreen overlay to enable audio */
.unmute{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  background:transparent;
  color: rgba(255,255,255,.7);
  letter-spacing:.22em;
  font-weight:800;
  text-transform:uppercase;
  font-size: 12px;
  cursor:pointer;

  display:flex;
  align-items:center;
  justify-content:center;

  user-select:none;
  -webkit-tap-highlight-color: transparent;

  /* Avoid being too close to iPhone notch areas */
  padding: env(safe-area-inset-top) env(safe-area-inset-right)
           env(safe-area-inset-bottom) env(safe-area-inset-left);
}
.unmute:focus, .unmute:focus-visible{ outline:none; }
.unmute.hidden{ display:none; }

/* Optional: make the overlay text smaller on tiny screens */
@media (max-width: 420px){
  .unmute{
    font-size: 11px;
    letter-spacing: .18em;
  }
}