html, body {
  height: 100%;
  margin: 0;
}
body {
  font-family: "Inter", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #2a003f, #0f0024);
  color: #fff;
}
.main {
  width: 90%;
  max-width: 420px;
  padding: 25px;
  border-radius: 16px;
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  text-align: center;
  margin: 0 10px 0 10px;
}
h1 {
  margin-bottom: 10px;
  font-weight: 700;
}
.subtitle {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 20px;
}
ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}
ul li {
  margin: 8px 0;
  opacity: 0.9;
}
/* .links {
  display: flex;
  gap: 10px;
  justify-content: center;
}
a {
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 8px;
  background: rgba(209, 86, 209, 0.2);
  color: #d156d1;
  transition: 0.3s;
}
a:hover {
  background: rgba(209, 86, 209, 0.4);
}
.donate {
  background: #d156d1;
  color: white;
}
.donate:hover {
  background: #ff7bff;
} */