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

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

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)),
    no-repeat center center/cover;
  min-height: 100vh;
  color: #eaeaea;
  padding: 100px 30px 40px 30px;
  animation: fadeIn 1.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header h1 {
  text-align: center;
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 30px;
  text-shadow: 2px 2px 15px #f5c400;
  animation: neonPulse 2s infinite alternate;
}

@keyframes neonPulse {
  0% {
    text-shadow: 0 0 10px #f5c400;
  }
  100% {
    text-shadow: 0 0 20px #f5c400, 0 0 40px #f5c400;
  }
}

header h2 p {
  font-size: 1.8rem;
  color: #ffffff;
  margin-left: 40px;
  margin-bottom: 25px;
  position: relative;
}

header h2 p::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  height: 3px;
  width: 100px;
  background: #f5c400;
  border-radius: 10px;
  animation: lineGrow 1.5s forwards;
}

@keyframes lineGrow {
  from {
    width: 0;
  }
  to {
    width: 100px;
  }
}

main h3 ul {
  padding-left: 50px;
  font-size: 1.1rem;
  list-style-type: disc;
  color: #e0e0e0;
}

main h3 ul li {
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  padding: 14px 22px;
  border-left: 5px solid #f5c400;
  border-radius: 12px;
  transition: transform 0.3s ease, background 0.3s ease;
}

main h3 ul li:hover {
  transform: translateX(12px);
  background: rgba(245, 196, 0, 0.15);
}

@media (max-width: 768px) {
  header h1 {
    font-size: 2.2rem;
  }
  header h2 p {
    font-size: 1.4rem;
    margin-left: 20px;
  }
  main h3 ul {
    padding-left: 20px;
  }
}
