* {
  box-sizing: border-box;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: #fff;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 28%, rgba(0, 0, 0, 1) 68%);
}

.content {
  max-width: 950px;
  animation: fadeIn 1.2s ease-out;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.28),
    0 0 48px rgba(255, 255, 255, 0.16),
    0 20px 80px rgba(255, 255, 255, 0.12);
}

p {
  margin: 28px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.02em;
}

a {
  display: inline-block;
  margin-top: 34px;
  padding: 12px 20px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: all 0.2s ease;
}

a:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.28);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
