/* Dark theme - blue/black gradient */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #e6e6e6;
  background: linear-gradient(180deg, #0a0a0f, #0d1a26);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

header {
  margin-top: 100px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #4da6ff;
}

p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #b3b3b3;
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer {
  margin-bottom: 40px;
  color: #666;
  font-size: 0.9rem;
}
