* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  height: 100vh;
  background: radial-gradient(circle at top, #0f172a, #020617);
  color: #e5e7eb;
}

.container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  text-align: center;
  max-width: 600px;
  padding: 40px;
}

h1 {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 10px;
  color: #38bdf8;
}

.subtitle {
  margin-top: 20px;
  font-size: 1.1rem;
  color: #cbd5f5;
}

.divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  margin: 30px auto;
  border-radius: 10px;
}

.note {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
}

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

