/* Reset + Basic styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #ffffff, #f0f0f0);
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
}

/* Main container */
.container {
  animation: fadeIn 2s ease-in;
  max-width: 800px;
  width: 100%;
}

/* Logo */
.logo {
  width: 80%;
  max-width: 400px;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

/* Content */
.content h1 {
  font-size: 2rem;
  margin: 20px 0 10px;
}

.content p {
  font-size: 1.1rem;
  opacity: 0.8;
  padding: 0 10px;
}

/* Illustration */
.construction-image {
  width: 70%;
  max-width: 360px;
  animation: bounce 2s infinite;
  margin-bottom: 10px;
}

/* Loader animation (just decorative) */
.loader {
  margin: 30px auto 0;
  border: 6px solid #e0e0e0;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .content h1 {
    font-size: 1.5rem;
  }

  .content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 70%;
    max-width: 240px;
  }

  .construction-image {
    width: 80%;
    max-width: 280px;
  }

  .content h1 {
    font-size: 1.3rem;
  }

  .content p {
    font-size: 0.95rem;
  }
}
