* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.construction-fullscreen {
  position: relative;
  width: 100%;
  height: 100%;
}

.construction-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.construction-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 15, 15, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.construction-text {
  text-align: center;
  color: #fff;
  padding: 20px;
  animation: fadeIn 1.2s ease-in-out;
}

.construction-text h1 {
  font-size: 28px;
  margin-bottom: 12px;
}

.construction-text p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #ddd;
}

.loader {
  width: 40px;
  height: 40px;
  border: 4px solid #888;
  border-top: 4px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: auto;
}

@keyframes spin {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
