* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #020204;
  font-family: system-ui, -apple-system, sans-serif;
  user-select: none;
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
}

.overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  pointer-events: none;
  color: #ffffff;
}

.top-bar h1 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
}

.center-info {
  text-align: center;
}

.center-info h2 {
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -1px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.center-info p {
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.55);
  margin-top: 8px;
}

.bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
}