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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background: linear-gradient(135deg, #05305c 0%, #0a4a8a 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}

body::before {
  content: "";
  position: fixed;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(239, 146, 39, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(250, 188, 46, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
  z-index: 0;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-20px) translateX(20px);
  }
}

.maintenance-container {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 60px 40px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  animation: slideIn 0.6s ease-out;
  margin: auto;
}

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

.logo-container {
  margin-bottom: 30px;
  animation: fadeIn 0.8s ease-out 0.2s both;
}

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

.logo-container img {
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(5, 48, 92, 0.2));
}

.icon-container {
  margin: 30px 0;
  animation: fadeIn 0.8s ease-out 0.4s both;
}

.maintenance-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  background: linear-gradient(135deg, #ef9227 0%, #fabc2e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(239, 146, 39, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(239, 146, 39, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(239, 146, 39, 0.4);
  }
}

.maintenance-icon svg {
  width: 60px;
  height: 60px;
  fill: #ffffff;
}

h1 {
  color: #05305c;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  animation: fadeIn 0.8s ease-out 0.6s both;
}

.subtitle {
  color: #ef9227;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  animation: fadeIn 0.8s ease-out 0.7s both;
}

.message {
  color: #555555;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 35px;
  letter-spacing: 0.2px;
  animation: fadeIn 0.8s ease-out 0.8s both;
}

.features-list {
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f8ff 100%);
  padding: 25px 30px;
  border-radius: 12px;
  border-left: 4px solid #ef9227;
  margin-bottom: 35px;
  text-align: left;
  animation: fadeIn 0.8s ease-out 0.9s both;
}

.features-list h3 {
  color: #05305c;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.features-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  color: #666666;
  font-size: 15px;
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  line-height: 1.5;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ef9227;
  font-weight: 700;
  font-size: 18px;
}

.home-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #ef9227 0%, #fabc2e 100%);
  color: #05305c;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 24px rgba(239, 146, 39, 0.3);
  animation: fadeIn 0.8s ease-out 1s both;
}

.home-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(239, 146, 39, 0.5);
}

.home-button:active {
  transform: translateY(0);
}

.contact-info {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid rgba(5, 48, 92, 0.1);
  animation: fadeIn 0.8s ease-out 1.1s both;
}

.contact-info p {
  color: #666666;
  font-size: 14px;
  margin-bottom: 10px;
}

.contact-info a {
  color: #ef9227;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #fabc2e;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding: 30px 20px;
  }

  .maintenance-container {
    padding: 40px 30px;
  }

  .logo-container img {
    max-width: 180px;
  }

  h1 {
    font-size: 28px;
  }

  .subtitle {
    font-size: 16px;
  }

  .message {
    font-size: 16px;
  }

  .maintenance-icon {
    width: 100px;
    height: 100px;
  }

  .maintenance-icon svg {
    width: 50px;
    height: 50px;
  }

  .features-list {
    padding: 20px 20px;
  }

  .home-button {
    width: 100%;
    padding: 14px 30px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 20px 15px;
  }

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

  .logo-container img {
    max-width: 160px;
  }

  h1 {
    font-size: 24px;
  }

  .subtitle {
    font-size: 15px;
  }

  .message {
    font-size: 15px;
  }

  .maintenance-icon {
    width: 90px;
    height: 90px;
  }

  .maintenance-icon svg {
    width: 45px;
    height: 45px;
  }

  .features-list h3 {
    font-size: 15px;
  }

  .features-list li {
    font-size: 14px;
  }
}
