/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
}

.container {
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 800px;
  z-index: 10;
  position: relative;
}

/* Construction Icon */
.construction-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  animation: bounce 2s infinite;
}

.construction-icon i {
  color: #ffd700;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Typography */
h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.main-message {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 3rem;
  line-height: 1.6;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.2s both;
}

/* Progress Bar */
.progress-section {
  animation: fadeInUp 1s ease-out 1s both;
}

.progress-section h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.progress-bar {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  height: 10px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.progress-fill {
  background: linear-gradient(90deg, #ffd700, #ff6b6b);
  height: 100%;
  border-radius: 50px;
  transition: width 2s ease-in-out;
  animation: progressLoad 2s ease-in-out;
}

.progress-text {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 500;
}

@keyframes progressLoad {
  0% {
    width: 0%;
  }
}

/* Animated Particles */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: float linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Fade in animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 1.5rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  .main-message {
    font-size: 1.1rem;
  }

  .countdown {
    gap: 0.5rem;
  }

  .time-box {
    padding: 1rem 0.5rem;
    min-width: 80px;
  }

  .time-box span {
    font-size: 2rem;
  }

  .email-form {
    flex-direction: column;
    align-items: center;
  }

  .email-form input {
    min-width: 100%;
    margin-bottom: 1rem;
  }

  .social-icons a {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  .construction-icon {
    font-size: 3rem;
  }

  .countdown {
    justify-content: space-between;
  }

  .time-box {
    min-width: 70px;
    padding: 0.8rem 0.3rem;
  }

  .time-box span {
    font-size: 1.8rem;
  }

  .time-box label {
    font-size: 0.8rem;
  }
}
