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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: radial-gradient(circle at center, #ffffff 0%, #bababa 60%);
  color: #111;
  position: relative;
  overflow: hidden;
}

.content {
  max-width: 900px;
  padding: 0 24px;
}

.logo {
  display: inline-block;
  font-size: 64px;
  font-weight: 900;
  letter-spacing: 0.35em;
  text-decoration: none;
}

.gradient-text {
  background: linear-gradient(100deg, #ff7a18, #ff3d77, #8a5cff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.game {
  margin-top: 40px;
  font-size: 26px;
  line-height: 1.4;
}

.soon {
  display: inline-block;
  margin-top: 8px;
  font-size: 16px;
  color: #666;
}

.footer {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 25px;
  font-size: 14px;
}

a {
  text-decoration: none;
  color: #444;
}

a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .logo {
    font-size: 40px;
    letter-spacing: 0.25em;
  }

  .game {
    font-size: 22px;
  }
}