* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #1a1a2e;
  color: #eee;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
}

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

p {
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 2rem;
}

nav {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

nav a {
  padding: 0.75rem 1.5rem;
  background: #e94560;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1rem;
  transition: background 0.2s;
}

nav a:hover {
  background: #c73652;
}
