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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  background: #0f0f23;
  color: #ffffff;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Background with animated gradient orbs */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #0f0f23 100%);
  will-change: transform;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 20s ease-in-out infinite;
  will-change: transform;
  transform: translateZ(0);
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #f38020 0%, #ff6b35 50%, transparent 70%);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #1d4ed8 0%, #3b82f6 50%, transparent 70%);
  top: 50%;
  right: -150px;
  animation-delay: -10s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #7c3aed 0%, #a855f7 50%, transparent 70%);
  bottom: -175px;
  left: 30%;
  animation-delay: -5s;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0px, 0px, 0px) scale(1);
  }
  33% {
    transform: translate3d(20px, -30px, 0px) scale(1.1);
  }
  66% {
    transform: translate3d(-20px, 20px, 0px) scale(0.9);
  }
}

/* Container and layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

/* Header */
.header {
  padding: 30px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
}

/* Main content */
.main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

/* Glassmorphism card */
.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 48px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  will-change: transform;
  transform: translateZ(0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}

/* Status indicator */
.status-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding: 12px 20px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 50px;
  width: fit-content;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #ff6b35;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

.status-text {
  font-size: 14px;
  font-weight: 500;
  color: #ff6b35;
}

/* Typography */
.title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f38020 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.description {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

/* Maintenance info */
.maintenance-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.info-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(243, 128, 32, 0.1);
  border-radius: 12px;
  color: #f38020;
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #ffffff;
}

.info-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* Progress section */
.progress-section {
  margin-bottom: 40px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.progress-label span:first-child {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}

.progress-percentage {
  font-size: 16px;
  font-weight: 600;
  color: #f38020;
}

.progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #f38020 0%, #ff6b35 100%);
  border-radius: 4px;
  position: relative;
  animation: progressGlow 2s ease-in-out infinite alternate;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: width;
}

@keyframes progressGlow {
  0% {
    box-shadow: 0 0 10px rgba(243, 128, 32, 0.5);
  }
  100% {
    box-shadow: 0 0 20px rgba(243, 128, 32, 0.8);
  }
}

/* Maintenance time */
.maintenance-time {
  margin-top: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  text-align: center;
}

.maintenance-time p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 4px 0;
}

.maintenance-time p:first-child {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Contact section */
.contact-section {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(243, 128, 32, 0.1);
  border: 1px solid rgba(243, 128, 32, 0.3);
  border-radius: 12px;
  color: #f38020;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-link:hover {
  background: rgba(243, 128, 32, 0.2);
  border-color: rgba(243, 128, 32, 0.5);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
}

.footer p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f38020;
}

/* Responsive design */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .glass-card {
    padding: 32px 24px;
    margin: 20px 0;
  }

  .title {
    font-size: 36px;
  }

  .description {
    font-size: 16px;
  }

  .maintenance-info {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-links {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .glass-card {
    padding: 24px 20px;
  }

  .title {
    font-size: 28px;
  }

  .info-item {
    padding: 16px;
  }
}
