body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: radial-gradient(circle at top left, #1e1e2f, #121212);
  color: #e0e0e0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.container {
  max-width: 900px;
  padding: 30px;
  background: #1f1f2e;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #00ffff;
}

.description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #ccc;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.button {
  padding: 12px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  background: linear-gradient(145deg, #00d4ff, #0077ff);
  color: white;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.button.outline {
  background: transparent;
  border: 2px solid #00ffff;
  color: #00ffff;
}

.button.outline:hover {
  background-color: rgba(0, 255, 255, 0.1);
}
