body {
  margin: 0;
  min-height: 100vh;
  background: #fff;
  color: #000;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

#bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 420ms ease;
}

#bg-video.visible {
  opacity: 1;
}

.content {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 1rem;
  color: #000;
}

.hidden {
  display: none;
}

#info-container {
  margin-top: 0.75rem;
  max-width: 90vw;
  word-break: break-word;
  color: #000;
}

.info-row {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 360ms ease, transform 360ms ease;
  margin-bottom: 4px;
  color: #000;
}
.info-row.visible {
  opacity: 1;
  transform: translateY(0);
}
