
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to bottom right, #2e19dd, #00c4ff);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}
.logo {
  width: 120px;
  margin-bottom: 20px;
}
h1 {
  font-size: 32px;
  margin-bottom: 10px;
}
p {
  font-size: 16px;
  max-width: 400px;
  text-align: center;
  margin-bottom: 30px;
}
.download-buttons a {
  display: inline-block;
  margin: 10px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  background-color: #fff;
  color: #2e19dd;
  transition: all 0.3s ease;
}
.download-buttons a:hover {
  background-color: #ffd700;
  color: #000;
}
.social-icons {
  margin-top: 40px;
}
.social-icons a {
  margin: 0 12px;
  color: white;
  font-size: 24px;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: #ffd700;
}
footer {
  margin-top: 50px;
  font-size: 12px;
  color: #ffffffa0;
}
