html, body {
  margin: 0;
  padding: 0;
  background: #000;
  height: 100%;
  font-family: "Aptos Display", "Aptos", "Segoe UI", system-ui, sans-serif;
  color: #e6e6e6;
}

.container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.block {
  max-width: 520px;
  line-height: 1.6;
}

h1 {
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  color:#7fbfb5; /*Light Blue*/
}

.enter {
  display: inline-block;
  margin-top: 32px;
  letter-spacing: 0.2em;
  text-decoration: none;
  color: #e6e6e6;
  border-bottom: 1px solid transparent;
}

.enter:hover,
.enter:focus,
.enter:active {
  color: #ff3b3b !important;
  border-bottom-color: #ff3b3b !important;
}

.crossings {
  margin-top: 24px;
  font-size: 0.9em;
  opacity: 0.75;
}
/* --- ENTER transition overlay --- */
#fade-out {
  position: fixed;
  inset: 0;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
  z-index: 9999;
}

body.exiting #fade-out {
  opacity: 1;
}

/* Subtle mobile tap feedback */
#enter-link:active {
  letter-spacing: 0.22em;
}