/* roman.ma — the watch screen. One video, edge to edge, no player chrome. */

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #000;
  color: #fff;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               Helvetica, Arial, sans-serif;
}

.film {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;       /* fills the screen the way the app does */
  background: #000;
  border: 0;
}

/* Wordmark, doubling as the way back. */
.back {
  position: fixed;
  top: calc(1rem + env(safe-area-inset-top, 0px));
  left: 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.7);
}
.back:hover { color: #fff; }
.back .dot { color: #B3382C; }

.sound {
  position: fixed;
  bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  padding: 0.7rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}
.sound:hover { background: rgba(0, 0, 0, 0.65); }
.sound[hidden] { display: none; }

.oops {
  position: fixed;
  inset: 0;
  display: grid;
  place-content: center;
  margin: 0;
  padding: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}
.oops[hidden] { display: none; }
