/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
  height: 100vh;
  overflow: hidden;
  position: relative;
  font-size: 14px;
}

/* Particles Background */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
  width: 8px;
  height: 8px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  width: 12px;
  height: 12px;
  top: 60%;
  left: 80%;
  animation-delay: 1s;
}

.particle:nth-child(3) {
  width: 6px;
  height: 6px;
  top: 40%;
  left: 70%;
  animation-delay: 2s;
}

.particle:nth-child(4) {
  width: 10px;
  height: 10px;
  top: 80%;
  left: 20%;
  animation-delay: 3s;
}

.particle:nth-child(5) {
  width: 14px;
  height: 14px;
  top: 30%;
  left: 90%;
  animation-delay: 4s;
}

.particle:nth-child(6) {
  width: 8px;
  height: 8px;
  top: 70%;
  left: 50%;
  animation-delay: 5s;
}

.particle:nth-child(7) {
  width: 16px;
  height: 16px;
  top: 10%;
  left: 60%;
  animation-delay: 0.5s;
}

.particle:nth-child(8) {
  width: 6px;
  height: 6px;
  top: 90%;
  left: 40%;
  animation-delay: 1.5s;
}

.particle:nth-child(9) {
  width: 12px;
  height: 12px;
  top: 50%;
  left: 15%;
  animation-delay: 2.5s;
}

.particle:nth-child(10) {
  width: 10px;
  height: 10px;
  top: 25%;
  left: 85%;
  animation-delay: 3.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

/* Main Container */
.maintenance-container {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  overflow: hidden;
  flex-wrap: nowrap;
}

.content-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 20px 30px;
  max-width: 790px;
  width: 100%;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: slideUp 1s ease-out;
  height: calc(100vh - 20px);
  overflow: hidden;
  margin-top: 10px;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo Section */
.logo-section {
  text-align: center;
  margin-bottom: 22px;
}

.logo-container {
  display: inline-block;
  margin-bottom: 22px;
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.logo-bg {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 20px rgba(30, 58, 138, 0.3);
}

@keyframes borderGlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.logo-symbol {
  color: #f97316;
  font-size: 50px;
  font-weight: bold;
  position: relative;
}

.z-shape {
  position: relative;
  width: 30px;
  height: 40px;
}

.z-top,
.z-middle,
.z-bottom {
  position: absolute;
  background: #f97316;
  border-radius: 4px;
}

.z-top {
  width: 40px;
  height: 8px;
  top: 0;
  left: 0;
  transform: skewX(-15deg);
}

.z-middle {
  width: 35px;
  height: 6px;
  top: 22px;
  left: 2px;
  transform: rotate(-45deg);
}

.z-bottom {
  width: 40px;
  height: 8px;
  bottom: 0;
  left: 0;
  transform: skewX(-15deg);
}

.company-name {
  font-size: 44px;
  font-weight: 700;
  color: #1e3a8a;
  margin: 0;
  letter-spacing: -1px;
}

/* Main Content */
.main-content {
  text-align: center;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 19px;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.main-title {
  font-size: 39px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 19px;
  line-height: 1.2;
}

.description {
  font-size: 18px;
  color: #64748b;
  line-height: 1.4;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Countdown Timer */
.countdown-section {
  margin-bottom: 24px;
}

.countdown-section h3 {
  font-size: 24px;
  color: #1e3a8a;
  margin-bottom: 24px;
  font-weight: 600;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.time-unit {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: white;
  padding: 12px;
  border-radius: 12px;
  min-width: 60px;
  box-shadow: 0 5px 15px rgba(30, 58, 138, 0.2);
}

.time-value {
  display: block;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.time-label {
  display: block;
  font-size: 14px;
  margin-top: 5px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.time-separator {
  font-size: 34px;
  font-weight: 700;
  color: #1e3a8a;
}

/* Progress Bar */
.progress-section {
  margin-bottom: 22px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 19px;
  font-weight: 500;
  color: #1e3a8a;
}

.progress-percentage {
  color: #f97316;
  font-weight: 600;
}

.progress-bar {
  width: 100%;
  height: 12px;
  background: #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  width: 75%;
  background: linear-gradient(90deg, #f97316, #ea580c);
  border-radius: 6px;
  position: relative;
  animation: progressGlow 2s ease-in-out infinite alternate;
}

.progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 2s infinite;
}

@keyframes progressGlow {
  0% {
    box-shadow: 0 0 5px rgba(249, 115, 22, 0.5);
  }
  100% {
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.8);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Contact Section */
.contact-section {
  margin-bottom: 24px;
}

.contact-section h3 {
  font-size: 24px;
  color: #1e3a8a;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #1e3a8a;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-size: 15px;
}

.contact-btn:hover {
  background: #1e3a8a;
  color: white;
  border-color: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

/* Social Section */
.social-section {
  text-align: center;
}

.social-section p {
  color: #64748b;
  margin-bottom: 24px;
  font-weight: 500;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(30, 58, 138, 0.2);
}

.social-link:hover {
  background: linear-gradient(135deg, #f97316, #ea580c);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

/* Footer */
.footer {
  margin-top: 10px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  flex-shrink: 0;
  padding: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .content-wrapper {
    padding: 15px 10px;
    height: calc(100vh - 20px);
  }

  .main-title {
    font-size: 30px;
  }

  .company-name {
    font-size: 26px;
  }

  .logo-bg {
    width: 80px;
    height: 80px;
  }

  .countdown-timer {
    gap: 5px;
  }

  .time-unit {
    min-width: 50px;
    padding: 10px;
  }

  .time-value {
    font-size: 22px;
  }

  .time-separator {
    font-size: 22px;
  }

  .contact-options {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .contact-btn {
    width: 150px;
    justify-content: center;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 26px;
  }

  .description {
    font-size: 16px;
  }

  .countdown-timer {
    flex-direction: row;
    gap: 5px;
  }

  .time-separator {
    display: block;
  }

  .content-wrapper {
    padding: 10px 8px;
    height: calc(100vh - 20px);
  }

  .time-unit {
    min-width: 40px;
    padding: 8px;
  }

  .time-value {
    font-size: 20px;
  }
}
