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

body {
  background: linear-gradient(135deg, #1e1f29, #2a2b38);
  font-family: "Poppins", sans-serif;
  color: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Container */
.construction-container {
  text-align: center;
  padding: 20px;
}

.icon {
  width: 120px;
  margin-bottom: 20px;
}

h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

p {
  color: #d3d3d3;
  margin-bottom: 20px;
  font-size: 1rem;
}

/* Loader animation */
.loader {
  border: 5px solid #444;
  border-top: 5px solid #ffcc00;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: 20px auto;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.footer-text {
  margin-top: 30px;
  font-size: 0.85rem;
  color: #aaa;
}
