html,
body {
  margin: 0;
  min-height: 100%;
  background: #08110f;
  color: #f6f7f7;
  font-family: "Cairo", sans-serif;
}

body {
  min-height: 100vh;
}

.app-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(46, 117, 94, 0.18), transparent 36%),
    linear-gradient(180deg, #0a1714 0%, #050908 100%);
}

.video-root {
  position: fixed;
  inset: 0;
  background: #000;
}

.video-root video.remote-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.video-root video.local-video {
  position: absolute;
  inset-inline-end: 16px;
  inset-block-end: 136px;
  width: min(176px, 34vw);
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  object-fit: cover;
  background: #000;
  z-index: 2;
}

.video-root audio {
  display: none;
}

.status-strip {
  position: fixed;
  inset-inline: 0;
  inset-block-end: 0;
  z-index: 3;
  display: grid;
  gap: 16px;
  padding: 20px 16px calc(20px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(4, 8, 7, 0) 0%, rgba(4, 8, 7, 0.92) 28%, rgba(4, 8, 7, 0.98) 100%);
}

.status-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 6px;
  color: #9bc7b7;
  font-size: 14px;
  font-weight: 600;
}

.headline {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
}

.message {
  margin: 0;
  color: rgba(246, 247, 247, 0.82);
  font-size: 16px;
  line-height: 1.6;
}

.controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  appearance: none;
  min-width: 132px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.button-primary {
  background: #4ec09a;
  border-color: #4ec09a;
  color: #08261b;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #f6f7f7;
}

.hidden {
  display: none;
}

@media (max-width: 640px) {
  .video-root video.local-video {
    inset-inline-end: 12px;
    inset-block-end: 190px;
    width: min(132px, 30vw);
  }

  .headline {
    font-size: 30px;
  }

  .message {
    font-size: 15px;
  }
}
