html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

cast-media-player {
  --theme-hue: 210;
  --theme-saturation: 60%;
  --theme-lightness: 50%;
  width: 100vw;
  height: 100vh;
}

.watermark {
  position: absolute;
  right: 32px;
  bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font: 600 18px/1.2 system-ui, -apple-system, Segoe UI, sans-serif;
  letter-spacing: 0.5px;
  text-transform: none;
  pointer-events: none;
  opacity: 0.35;
  transition: opacity 200ms ease;
  z-index: 10;
}

.watermark img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}

.watermark.hidden {
  opacity: 0;
}

.splash {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.35);
  z-index: 20;
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
}

.splash-card {
  display: grid;
  place-items: center;
  gap: 12px;
  transform: translateY(-36px);
}

.splash-card img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.6));
}

.splash-title {
  font: 700 26px/1 \"Space Grotesk\", system-ui, -apple-system, Segoe UI, sans-serif;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: none;
}

.splash.visible {
  opacity: 1;
}
