* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: #0a0a14;
}

#glcanvas {
  display: block;
  width: 100%;
  height: 100%;
}

#label {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,220,150,0.55);
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  text-align: center;
}

#label small {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(255,220,150,0.35);
}

.back-link {
  position: fixed;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 10;
  color: rgba(255,225,170,0.7);
  background: rgba(20,16,28,0.55);
  border: 1px solid rgba(255,200,120,0.25);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-family: 'Georgia', serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, color 0.2s ease;
}
.back-link:hover {
  background: rgba(40,30,52,0.75);
  color: rgba(255,235,190,0.95);
}

.archive-badge {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 10;
  font-family: 'Georgia', serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.archive-badge.original {
  color: #cfe9c0;
  background: rgba(28,42,22,0.6);
  border: 1px solid rgba(140,200,120,0.3);
}
.archive-badge.broken {
  color: #f0c4c4;
  background: rgba(48,22,22,0.6);
  border: 1px solid rgba(220,120,120,0.35);
}
.archive-badge.previous {
  color: #ffe2aa;
  background: rgba(48,36,20,0.6);
  border: 1px solid rgba(255,200,120,0.35);
}
