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

.construction-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  width: 100%;
  height: 100vh;
}

.background-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  /* animation: float 30s ease-in-out infinite; */
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  bottom: -150px;
  right: -150px;
  animation-delay: 5s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  top: 50%;
  right: -175px;
  animation-delay: 10s;
}

/* @keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
} */

.content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  flex-shrink: 0;
}

.icon-wrapper {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.construction-icon {
  width: 120px;
  height: 120px;
  color: white;
}

.icon-path {
  stroke-dasharray: 200;
  stroke-dashoffset: 0;
}

.icon-dot {
  /* animation: blink 1.5s ease-in-out infinite; */
}

/* @keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
} */

.title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  line-height: 1.2;
}

.title-brand {
  font-size: clamp(1.4rem, 5.2vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
  text-transform: none;
  display: block;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

.title-word {
  display: block;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: white;
}

.dots {
  display: inline-block;
  min-width: 1.5em;
  text-align: left;
  color: white;
  opacity: 0.8;
}

.subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  /* animation: fadeInUp 0.8s ease-out; */
  /* animation-fill-mode: both; */
}

/* @keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} */

.progress-container {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.progress-bar {
  width: 300px;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(10px);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffffff 0%, #f0f0f0 100%);
  border-radius: 10px;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
  width: 0%;
}

.progress-fill::after {
  /* content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shimmer-progress 2s infinite; */
}

/* @keyframes shimmer-progress {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
} */

.progress-text {
  color: white;
  font-weight: 600;
  font-size: 1rem;
  min-width: 50px;
  text-align: left;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.floating-item {
  position: absolute;
  font-size: 2rem;
  opacity: 0.15;
  /* animation: float-item 25s ease-in-out infinite; */
}

.item-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.item-2 {
  top: 60%;
  right: 15%;
  animation-delay: 3s;
}

.item-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 6s;
}

.item-4 {
  top: 30%;
  right: 25%;
  animation-delay: 9s;
}

/* @keyframes float-item {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.15;
  }
  25% {
    transform: translate(15px, -15px) rotate(45deg);
    opacity: 0.2;
  }
  50% {
    transform: translate(-10px, 10px) rotate(90deg);
    opacity: 0.1;
  }
  75% {
    transform: translate(10px, 15px) rotate(135deg);
    opacity: 0.18;
  }
} */

@media (max-width: 768px) {
  .title {
    font-size: 2.5rem;
  }
  
  .progress-bar {
    width: 200px;
  }
  
  .construction-icon {
    width: 80px;
    height: 80px;
  }
}
