@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(120deg, #0f172a, #1e293b);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}

.background {
  width: 100%;
  padding: 40px 20px;
}

.glass-card {
  max-width: 800px;
  margin: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  color: #e2e8f0;
  animation: slideIn 1s ease-in-out;
}

header h1 {
  font-size: 2.8rem;
  color: #38bdf8;
  text-align: center;
  margin-bottom: 10px;
}

header p {
  text-align: center;
  color: #cbd5e1;
  margin-bottom: 20px;
}

section {
  margin: 30px 0;
}

section h2 {
  color: #facc15;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

section p {
  color: #cbd5e1;
  line-height: 1.6;
}

ul {
  list-style-type: square;
  padding-left: 20px;
  color: #a5f3fc;
}

a {
  display: inline-block;
  background: #1e40af;
  color: white;
  padding: 10px 18px;
  margin: 10px 5px 0 0;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

a:hover {
  background: #2563eb;
  transform: scale(1.05);
}

footer {
  text-align: center;
  font-size: 0.9rem;
  color: #94a3b8;
  margin-top: 30px;
}

/* Animation */
@keyframes slideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.fade-in {
  animation: slideIn 1s ease-in-out;
}
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}
.fade-in-up:nth-child(2) {
  animation-delay: 0.3s;
}
.fade-in-up:nth-child(3) {
  animation-delay: 0.6s;
}
.fade-in-up:nth-child(4) {
  animation-delay: 0.9s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}