@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #a8e063, #56ab2f);
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: backgroundShift 15s ease infinite;
}

.container {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInDown 1.5s ease forwards;
  opacity: 0;
}

.title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  color: #f0f9ff;
}

.title span {
  color: #ffd700;
  text-shadow: 0 0 8px #ffd700aa;
}

.subtitle {
  font-weight: 300;
  font-size: 1.2rem;
  color: #d0f0c0;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  animation: fadeInUp 1.5s ease 0.5s forwards;
  opacity: 0;
}

.card {
  background: rgba(255, 255, 255, 0.15);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(8px);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
}

.card h2 {
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon {
  color: #ffd700;
  font-size: 2.2rem;
  animation: iconBounce 2s infinite;
}

.footer {
  text-align: center;
  padding: 1.5rem 0;
  background-color: rgba(0, 0, 0, 0.15);
  font-weight: 600;
  font-size: 1rem;
  color: #f0f9ff;
  backdrop-filter: blur(6px);
  animation: fadeInUp 1.5s ease 1s forwards;
  opacity: 0;
}

.footer i {
  color: #a8e063;
  margin-right: 0.5rem;
}

/* Animations */
@keyframes backgroundShift {
  0%, 100% {
    background: linear-gradient(135deg, #a8e063, #56ab2f);
  }
  50% {
    background: linear-gradient(135deg, #56ab2f, #a8e063);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes iconBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
