body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0a0a0a;
  color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

main {
  text-align: center;
  padding: 2rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #e74c3c;
}

p {
  margin: 0.5rem 0 1.5rem 0;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  background-color: #e74c3c;
  color: white;
  text-decoration: none;
  padding: 0.8rem 1.6rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn:hover {
  background-color: #c0392b;
}

.credits {
  font-size: 0.9rem;
  opacity: 0.8;
}

