@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #0a0f18, #0f1720);
  color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.wrapper {
  max-width: 500px;
  padding: 20px;
}

h1 {
  font-size: 6rem;
  margin: 0;
  font-weight: 700;
  color: #ff6600;
  text-shadow: 0 0 15px rgba(255, 102, 0, 0.6), 0 0 30px rgba(255, 102, 0, 0.3);
}

h2 {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 10px 0 15px;
  color: #ffffff;
}

p {
  font-size: 1rem;
  font-weight: 400;
  color: #d1d1d1;
  line-height: 1.5;
}

a {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 18px;
  background: #ff6600;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

a:hover {
  background: #ff8533;
}

footer {
  margin-top: 40px;
  font-size: 0.8rem;
  color: #999;
}
