:root {
  --bg: #0a0a0f;
  --accent: #ff6a00;
  --ink: #f5f3ef;
  --ink-soft: #b9b4ac;
  --card: #16161d;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  height: 100%;
  width: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: "Outfit", "Segoe UI", system-ui, sans-serif;
  overflow: hidden;
  cursor: none;
}

/* ---- video wall ---- */
#stage {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 40%, #14141c 0%, #060608 100%);
}

#player {
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  background: #000;
}

#idle-brand {
  position: fixed;
  bottom: 4vh;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 2.2vh;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.35;
  pointer-events: none;
}

/* ---- person overlay ---- */
#overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 4, 8, 0.72);
  backdrop-filter: blur(14px);
  z-index: 50;
  opacity: 1;
  transition: opacity 0.5s ease;
}

#overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5vh 6vw;
  transform: translateY(0) scale(1);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  animation: pop 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pop {
  from { transform: translateY(24px) scale(0.94); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

.photo-wrap {
  width: 42vh;
  height: 42vh;
  border-radius: 50%;
  overflow: hidden;
  border: 0.8vh solid var(--accent);
  box-shadow: 0 0 0 1.6vh rgba(255, 106, 0, 0.12),
              0 3vh 8vh rgba(0, 0, 0, 0.6);
}

.photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ov-greeting {
  margin-top: 4vh;
  font-size: 3vh;
  color: var(--accent);
  letter-spacing: 0.08em;
  font-weight: 600;
}

.ov-name {
  margin-top: 1vh;
  font-size: 6vh;
  font-weight: 800;
  line-height: 1.05;
}

.ov-title {
  margin-top: 1.2vh;
  font-size: 2.6vh;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

/* connection status dot */
.status {
  position: fixed;
  top: 2vh;
  right: 2vh;
  font-size: 1.6vh;
  color: #e2554e;
  opacity: 0.5;
  z-index: 60;
  transition: color 0.3s;
}
.status.live { color: #4fd18b; }
