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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

.maintenance-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.content-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  padding: 40px 20px;
}

.icon-container {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  height: 150px;
}

.gear-icon {
  position: absolute;
  transition: transform 10s linear infinite;
}

.gear-icon.large {
  width: 100px;
  height: 100px;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  animation: rotateLarge 10s linear infinite;
}

.gear-icon.medium {
  width: 70px;
  height: 70px;
  top: 40px;
  left: calc(50% - 80px);
  animation: rotateMedium 10s linear infinite;
  animation-direction: reverse;
}

.gear-icon.small {
  width: 50px;
  height: 50px;
  top: 10px;
  left: calc(50% + 60px);
  animation: rotateSmall 10s linear infinite;
}

@keyframes rotateLarge {
  from { transform: translateX(-50%) rotate(0deg); }
  to { transform: translateX(-50%) rotate(360deg); }
}

@keyframes rotateMedium {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotateSmall {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.gear {
  width: 100%;
  height: 100%;
  fill: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  animation: slideDown 0.8s ease-out 0.2s both;
}

.maintenance-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1s ease-out 0.4s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.message-box {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-left: 4px solid #667eea;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.message-box h3 {
  color: #333;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.message-box p {
  color: #666;
  line-height: 1.8;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.info-card {
  text-align: center;
  padding: 25px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.info-card h4 {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.info-card p {
  color: #666;
  font-size: 1rem;
}

.progress-section {
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
}

.progress-section h4 {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.progress-bar {
  width: 100%;
  height: 20px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px;
  animation: progressAnimation 2s ease-out;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

@keyframes progressAnimation {
  from {
    width: 0%;
  }
  to {
    width: 65%;
  }
}

.progress-text {
  text-align: center;
  color: #666;
  font-weight: 600;
}

.notify-section {
  margin-bottom: 30px;
  padding: 25px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-radius: 12px;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.notify-section h4 {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.notify-section p {
  color: #666;
  margin-bottom: 15px;
}

.notify-form {
  display: flex;
  gap: 10px;
}

.notify-form input {
  flex: 1;
  padding: 12px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.notify-form input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.notify-form button {
  padding: 12px 25px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.notify-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.social-link:hover {
  transform: translateY(-3px) rotate(360deg);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.social-icon {
  width: 24px;
  height: 24px;
  fill: white;
}

.footer {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .maintenance-content {
    padding: 30px 20px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .notify-form {
    flex-direction: column;
  }

  .icon-container {
    height: 100px;
  }

  .gear-icon.large {
    width: 70px;
    height: 70px;
  }

  .gear-icon.medium {
    width: 50px;
    height: 50px;
  }

  .gear-icon.small {
    width: 35px;
    height: 35px;
  }
}