* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  max-width: 1440px;
  margin: 0 auto;
  padding: 3rem 2rem;
  color: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #220337, #0a0c10, #230860);
  background-size: 400% 400%;
  animation: gradientMove 10s ease infinite;
  z-index: -1;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.title {
  font-size: 2.5rem;
  font-weight: 700;
  color: purple;
  text-align: center;
  margin-bottom: 0.5rem;
  animation: fadeInUp 1s ease forwards;
}

.title:hover {
  color: #8e3cdb;
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.update {
  font-size: 0.9rem;
  color: #888;
  text-align: center;
  margin-bottom: 2rem;
}

.intro {
  color: #ccc;
  text-align: center;
  font-size: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1.2s ease forwards;
}


.card {
  width: 100%;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  color: #f0f0f0;
  font-size: 1em;
  box-shadow: 0 0 8px rgba(100, 0, 255, 0.1);
  backdrop-filter: blur(6px);
  margin-bottom: 1.5rem;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.6s forwards;
}

.card:nth-child(1) {
  animation-delay: 0.2s;
}
.card:nth-child(2) {
  animation-delay: 0.4s;
}
.card:nth-child(3) {
  animation-delay: 0.6s;
}
.card:nth-child(4) {
  animation-delay: 0.8s;
}
.card:nth-child(5) {
  animation-delay: 1s;
}
.card:nth-child(6) {
  animation-delay: 1.2s;
}
.card:nth-child(7) {
  animation-delay: 1.4s;
}
.card:nth-child(8) {
  animation-delay: 1.6s;
}
.card:nth-child(9) {
  animation-delay: 1.8s;
}
.card:nth-child(10) {
  animation-delay: 2s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 18px rgba(180, 124, 255, 0.3);
  transition: all 0.4s ease;
}

.card h2 {
  color: purple;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.card h2:hover {
  color: #8e3cdb;
  transform: scale(1.05);
}

.card p,
.card ul {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.card ul {
  margin-left: 1.2rem;
  list-style: disc;
}


a {
  color: #c5c5c5;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #d7b4ff;
}


@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}




.footer {
  padding-top: 50px;
  margin-top: 50px;
  animation: fadeUp 1.5s ease;
}

.footer::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #220337, #0a0c10, #230860);
  background-size: 400% 400%;
  animation: gradientMove 6s ease infinite;
  z-index: -1;
}

.footer-top-border {
  height: 4px;
  background: linear-gradient(to right, #a855f7, #ec4899, #f97316);
  margin-bottom: 40px;
  animation: gradientShift 6s linear infinite alternate;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
  gap: 80px;
}

.footer-col {
  flex: 1 1 200px;
  margin-bottom: 30px;
}

.footer-logo {
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 15px;
}

.footer-logo span {
  color: #a855f7;
}

.footer-desc {
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 20px;
}

.footer-social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  color: #c5c5c5;
  background: #8e3cdb;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 15px;
  text-decoration: none;
}

.footer-social a:hover {
  transform: scale(1.2);
  color: #fff;
}

.footer-social a:nth-child(1):hover {
  background: #0a66c2;
}
.footer-social a:nth-child(2):hover {
  background: #ff0000;
}
.footer-social a:nth-child(3):hover {
  background: linear-gradient(
    45deg,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
  );
}

.footer-col h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}

.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #c5c5c5;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-col ul li a:hover {
  color: #a855f7;
  transform: translateX(10px);
}

.footer-col p {
  color: #c5c5c5;
  line-height: 1.7;
  font-size: 15px;
}

.footer-col p i {
  margin-right: 20px;
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #1f1f23;
  padding: 15px 0;
  margin-top: 20px;
  font-size: 14px;
  color: white;
}



@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientShift {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}



@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .footer-social {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding-top: 30px;
  }

  .footer-col h3 {
    font-size: 16px;
  }

  .footer-col p,
  .footer-col ul li a {
    font-size: 14px;
  }

  .footer-bottom {
    font-size: 13px;
  }
}


::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #220337, #0a0c10, #230860);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #7209b7, #c084fc, #7c3aed);
  border-radius: 10px;
  border: 3px solid rgba(34, 3, 55, 0.3);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff00ff, #ff77ff, #a855f7);
}


body {
  scrollbar-width: thin;
  scrollbar-color: #7209b7 #220337;
}
