body {
  margin: 0;
  font-family: 'Ubuntu', sans-serif;
  background-color: #010d1a;
  color: #b3e8ff;
  text-align: center;
  overflow-x: hidden;
}

.stars {
  min-height: 100vh;
  background: #010d1a url('https://www.transparenttextures.com/patterns/stardust.png');
  background-repeat: repeat;
  background-size: contain;
  animation: scrollStars 100s linear infinite;
  padding-top: 50px;
  padding-bottom: 100px;
}

@keyframes scrollStars {
  from { background-position: 0 0; }
  to { background-position: 10000px 10000px; }
}

h1 {
  color: #ffffff;
  text-shadow: 0 0 5px #b3e8ff;
  margin-bottom: 30px;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.card {
  background: rgba(0, 35, 71, 0.5);
  border: 1px solid #0d3b5d;
  border-radius: 20px;
  padding: 20px 30px;
  width: 100%;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.2);
  text-align: left;
}

.card h2 {
  color: #ffffff;
  text-shadow: 0 0 5px #b3e8ff;
}

.card p, .card ul {
  line-height: 1.6;
  color: #d1f4ff;
  text-shadow: 0 0 4px rgba(179, 232, 255, 0.5);
}

.card ul {
  padding-left: 20px;
}

/* Fade-in Animation */
.section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #05000c;
  box-shadow: 0 -2px 10px rgb(48, 19, 97);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  z-index: 1000;
  backdrop-filter: blur(6px);
}

footer .copyright {
  margin-right: 60px;
  font-family: 'Times New Roman', serif;
  font-size: 14px;
  color: #b3b6ff;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #b3b6ff;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.social-icons a:hover {
  color: #00ccff;
}

.stars {
  min-height: 100vh;
  background: #010d1a url('https://www.transparenttextures.com/patterns/stardust.png');
  background-repeat: repeat;
  background-size: 200%;
  animation: zoomScroll 120s linear infinite, scrollStars 100s linear infinite;
  padding-top: 50px;
  padding-bottom: 100px;
}

@keyframes zoomScroll {
  0% {
    background-size: 100%;
  }
  50% {
    background-size: 120%;
  }
  100% {
    background-size: 100%;
  }
}

.card {
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
  }
}

.stars::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('https://transparenttextures.com/patterns/stardust.png');
  animation: moveStars 200s linear infinite;
  opacity: 0.3;
  z-index: -1;
}

@keyframes moveStars {
  from { transform: translateX(0); }
  to { transform: translateX(1000px); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.social-icons a {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

.links a{
  color: #00ccff;
  text-decoration: none;
}