:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #000;
}

* { box-sizing: border-box; }

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  background: #000;
}

body { min-height: 100svh; }

.scene {
  position: relative;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
  background: #000;
}

.character {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}

.corner-link {
  position: absolute;
  z-index: 5;
  bottom: max(18px, env(safe-area-inset-bottom));
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.52);
  color: rgba(255,255,255,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  padding: 10px 13px;
  transition: 160ms ease;
}

.corner-link {
  right: max(18px, env(safe-area-inset-right));
}


.corner-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(20, 20, 20, 0.72);
}
