@font-face {
  font-family: "Tetris Bombliss";
  src: url("fonts/tetris-2-bombliss.woff2") format("woff2");
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  height: 100%;
  background: #000;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-family: "Tetris Bombliss", monospace;
  color: #fff;
  overflow: hidden;
}

#stars {
  position: fixed;
  inset: 0;
  z-index: 0;
}

main {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px;
}

h1 {
  font-family: "Tetris Bombliss", monospace;
  font-size: clamp(1.5rem, 8vw, 4rem);
  letter-spacing: 0.05em;
  margin: 0 0 4.5rem;
  white-space: nowrap;
}

.page-title {
  font-family: "Tetris Bombliss", monospace;
  font-size: clamp(1.1rem, 8vw, 2.5rem);
  letter-spacing: 0.05em;
  margin: 0 0 1.5rem;
  white-space: normal;
}

p {
  margin: 0 0 2rem;
}

.dream {
  max-width: 640px;
}

.dream p {
  font-family: "Tetris Bombliss", monospace;
  font-size: 0.95rem;
  line-height: 1.9;
  text-align: left;
}

.dream .signature {
  font-family: "Tetris Bombliss", monospace;
  font-size: 0.85rem;
  color: #999;
  text-align: right;
  margin: 0 0 2.5rem;
}

.start-button {
  display: inline-block;
  font-family: "Tetris Bombliss", monospace;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  color: #fff;
  background: #111111;
  border: 2px solid rgb(230, 0, 18);
  padding: 1rem 2.5rem;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.start-button:hover {
  transform: scale(1.05);
  background: rgb(230, 0, 18);
}

.start-button:active {
  background: #0969da;
  border-color: #58a6ff;
}

footer {
  position: fixed;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  padding: 0 1rem;
  font-size: 0.8rem;
}

footer a {
  color: #fff;
  text-decoration: underline;
  font-family: "Tetris Bombliss", monospace;
}

footer a:hover {
  color: rgb(230, 0, 18);
}
