* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.8), rgba(0, 0, 255, 0.8));
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 20px;
  animation: backgroundAnimation 5s infinite alternate;
}

@keyframes backgroundAnimation {
  0% {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.8), rgba(0, 0, 255, 0.8));
  }
  100% {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.8), rgba(0, 255, 255, 0.8));
  }
}
.logo-svg {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 20px;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 3s ease forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.container {
  width: 100%;
  max-width: 650px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  color: #ff9f00;
  margin-bottom: 10px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 300;
  color: #fff;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #fff;
  opacity: 0.9;
  animation: fadeIn 2s ease-out;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.status {
  margin-top: 30px;
  margin-bottom: 30px;
}

.status-bar {
  width: 70%;
  height: 8px;
  background: #ff9f00;
  margin: 0 auto;
  border-radius: 5px;
  animation: loadingBar 3s infinite ease-in-out;
}

@keyframes loadingBar {
  0% { width: 0%; }
  50% { width: 70%; }
  100% { width: 100%; }
}

.note {
  font-size: 1rem;
  color: #ddd;
  margin-top: 20px;
  letter-spacing: 0.5px;
  padding: 0 10px;
}

.social-links {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.social-links a {
  color: #ff9f00;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  position: relative;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ff6f00;
}

.social-links a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #ff9f00;
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.social-links a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

footer {
  margin-top: 40px;
  font-size: 0.8rem;
  color: #ddd;
  letter-spacing: 0.5px;
  padding: 0 15px;
}

@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero h2 {
    font-size: 1.4rem;
  }

  .hero p, .note {
    font-size: 1rem;
  }

  .status-bar {
    width: 90%;
  }

  .social-links {
    flex-direction: column;
    gap: 10px;
  }
}
