@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: linear-gradient(-45deg, #141e30, #243b55, #1a2a6c, #2c5364);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.container {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  width: 90%;
  backdrop-filter: blur(10px);
}

h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  text-transform: lowercase;
}

p {
  font-size: 1.25rem;
  margin: 0.5rem 0 2rem;
  opacity: 0.9;
}

a.button {
  display: inline-block;
  padding: 16px 32px;
  background: #00d4ff;
  color: #000;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4);
}

a.button:hover {
  background: #00aacc;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 212, 255, 0.6);
}

footer {
  margin-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.6;
  text-transform: lowercase;
}