:root {
  --primary: #cdf5af;
  --secondary: #00b4db;
  --bg: #f8fafc;
  --text: #1e293b;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

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

.logo {
  width: 50%;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  background: white;
  color: black;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--bg);
  transform: translateY(-2px);
}

footer {
  margin-top: 40px;
  font-size: 0.85rem;
  opacity: 0.8;
}
