@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(fonts/GeistMono-Latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

body {
  background: #1a1a1a;
  color: #fff;
  font-family: 'Geist Mono', monospace;
  overflow: hidden;
  height: 100dvh;
  width: 100vw;
}

#scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  height: 100dvh;
  pointer-events: none;
}

.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8vh;
  align-items: center;
  padding-inline: 5vw;
  margin-bottom: 2vh;
}

.buttons {
  display: flex;
  gap: 16px;
  pointer-events: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  min-width: 240px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.06);
  transition: background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.btn:active {
  background: #c8ff00;
  border-color: #c8ff00;
  color: #1a1a1a;
  box-shadow: 0 0 16px rgba(200, 255, 0, 0.15);
}

@media (hover: hover) {
  .btn:hover {
    background: #c8ff00;
    border-color: #c8ff00;
    color: #1a1a1a;
    box-shadow: 0 0 16px rgba(200, 255, 0, 0.15);
  }
}

.legal {
  display: flex;
  gap: 8px;
  pointer-events: auto;
  justify-content: center;
  width: 100%;
}

.legal * {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.25s;
}

@media (hover: hover) {
  .legal a:hover {
    color: rgba(255, 255, 255, 0.6);
  }
}

@media (max-width: 600px) {
  .buttons {
    flex-direction: column;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .overlay {
    align-items: flex-end;
    justify-content: center;
  }

  .footer {
    width: auto;
    margin-bottom: 0;
    padding-right: 6vw;
    gap: 3vh;
  }

  .buttons {
    flex-direction: column;
  }

  .btn {
    background: #000;
  }
}