.construction {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  padding: 20px;
}

.construction-content {
  max-width: 600px;
}

.construction img {
  width: 100px;
  margin-bottom: 20px;
}

.construction h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.construction p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.loader {
  margin: 0 auto;
  border: 6px solid rgba(255, 255, 255, 0.3);
  border-top: 6px solid #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}