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

body {
  font-family: 'Poppins', sans-serif;
  background: #000000;
  background: linear-gradient(45deg, #000000, #1a1a1a, #000000);
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.container {
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: -1;
  animation: backgroundMove 60s linear infinite;
}

h1 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ffffff, #cccccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 20px rgba(255, 255, 255, 0.3);
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #ffffff;
  font-weight: 300;
}

p {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.progress {
  width: 400px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  margin: 3rem auto;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #ffffff, #cccccc);
  animation: progressPulse 3s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.coming-soon {
  font-size: 1.8rem;
  background: linear-gradient(45deg, #ffffff, #cccccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 2rem;
}

.social-icons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-icon {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.8rem;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social-icon:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

@keyframes progressPulse {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes backgroundMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100px, 100px);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  p {
    font-size: 1.1rem;
  }
  
  .progress {
    width: 280px;
  }

  .social-icons {
    gap: 1rem;
  }

  .social-icon {
    font-size: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}