@font-face {
  font-family: 'Turbine Trial';
  src: url('fonts/TurbineTrial-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

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

html, body {
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
  cursor: none;
  font-family: 'Turbine Trial', 'Courier New', monospace;
}

/* ── Shared text layer ── */
.text-layer {
  position: fixed;
  inset: 0;
  overflow-y: scroll;
  scrollbar-width: none;
}
.text-layer::-webkit-scrollbar { display: none; }

.text-column {
  max-width: 780px;
  margin: 120px auto 120px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 1.6em;
}

.text-column p {
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

/* ── Blurred dim layer (unrevealed) ── */
.blurred {
  z-index: 1;
  color: rgba(255, 255, 255, 0.18);
  filter: blur(3px);
  pointer-events: all;
}

/* ── Sharp bright layer (revealed, clipped) ── */
.sharp {
  z-index: 3;
  color: rgba(255, 255, 255, 0.95);
  pointer-events: none;
}

/* ── Reveal border ── */
#reveal-box {
  position: fixed;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

/* ── Corner info labels ── */
.corner {
  position: fixed;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  padding: 28px 32px;
}

.corner span {
  font-family: 'Turbine Trial', 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #c0e8ff;
  white-space: nowrap;
  line-height: 1.6;
}

.top-left     { top: 0; left: 0; align-items: flex-start; }
.top-right    { top: 0; right: 0; align-items: flex-end; text-align: right; }
.bottom-left  { bottom: 0; left: 0; align-items: flex-start; }
.bottom-right { bottom: 0; right: 0; align-items: flex-end; text-align: right; }

/* ── Home logo link ── */
.home-logo {
  position: fixed;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 25;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.home-logo:hover {
  opacity: 1;
}

.home-logo img {
  width: 80px;
  display: block;
}
