body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #1e1e2f, #2a2a40);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
  background: rgba(255,255,255,0.05);
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

h1 {
  margin-bottom: 3rem;
}

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

.button {
  display: block;
  padding: 1rem;
  background: linear-gradient(135deg, #8a5cff, #25f0c4);
  color: #111;
  text-decoration: none;
  font-weight: bold;
  border-radius: 0.5rem;
  transition: transform 0.1s, box-shadow 0.1s;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}