body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #d4af37;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.container {
  max-width: 420px;
  padding: 20px;
}

h1 {
  font-size: 28px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

p {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 25px;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.buttons a {
  padding: 14px;
  background: linear-gradient(135deg, #ff8c00, #d4af37);
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: 0.3s ease;
}

.buttons a:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

footer {
  margin-top: 30px;
  font-size: 14px;
  opacity: 0.6;
}