
body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #0f0f0f;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.container {
  text-align: center;
}
h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
}
p {
  font-size: 1.2em;
  margin-bottom: 1.5em;
}
.buttons a {
  display: inline-block;
  margin: 0 10px;
  padding: 12px 24px;
  background: #ff007f;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}
.buttons a:hover {
  background: #e60073;
}
