/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}

body {
  background: linear-gradient(135deg, #1f2020, #333434);
  color: #e6f1ff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* Abstract Water / Mould Drops Animation */
.background-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.drop {
  position: absolute;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(59, 108, 96, 0.4),
    rgba(51, 52, 52, 0.1)
  );
  border-radius: 50%;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(59, 108, 96, 0.2);
  animation: float 8s infinite ease-in-out alternate;
}

.drop1 {
  width: 350px;
  height: 350px;
  top: -10%;
  left: -5%;
  animation-delay: 0s;
}
.drop2 {
  width: 250px;
  height: 250px;
  bottom: 5%;
  right: 5%;
  animation-delay: 2s;
}
.drop3 {
  width: 150px;
  height: 150px;
  top: 40%;
  left: 65%;
  animation-delay: 4s;
}

@keyframes float {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-40px) scale(1.05);
  }
}

/* Glassmorphism Main Container */
.container {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3.5rem 4rem;
  border-radius: 24px;
  text-align: center;
  max-width: 750px;
  width: 90%;
  z-index: 1;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.logo {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #6fd1b8, #3b6c60);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

/* Logo Image Styles */
.main-logo {
  width: 140px; /* Controls the size of the image */
  height: auto;
  margin-bottom: 1rem;
  /* This adds a very subtle shadow to separate the metallic logo from the background */
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
}

/* Optional hover effect to make it feel premium */
.main-logo:hover {
  transform: scale(1.05);
}

/* Add inside your existing @media (max-width: 480px) */
@media (max-width: 480px) {
  .main-logo {
    width: 110px; /* Shrinks the logo slightly on small screens */
  }

  /* ... your other mobile styles ... */
}

.badge {
  display: inline-block;
  background: rgba(59, 108, 96, 0.15);
  color: #6fd1b8;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(59, 108, 96, 0.3);
}

.content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 500;
  color: #ffffff;
}

.content p {
  color: #a0aabf;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* Progress / Status Section */
.progress-section {
  max-width: 450px;
  margin: 0 auto;
  text-align: left;
  background: rgba(51, 52, 52, 0.6);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(59, 108, 96, 0.3);
}

.status-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  color: #e6f1ff;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Blinking dot to show activity */
.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: #6fd1b8;
  border-radius: 50%;
  box-shadow: 0 0 10px #6fd1b8;
  animation: pulse 1.5s infinite;
}

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

/* Animated Progress Bar */
.progress-bar-bg {
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #3b6c60, #6fd1b8, #3b6c60);
  background-size: 200% 100%;
  border-radius: 10px;
  animation: loadingBar 2s infinite linear;
}

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

/* =========================================
   Mobile Responsiveness
   ========================================= */

/* Tablets and smaller screens */
@media (max-width: 768px) {
  .container {
    padding: 2.5rem 2rem;
  }
  .logo {
    font-size: 2.8rem;
  }
  .content h2 {
    font-size: 1.8rem;
  }
  .content p {
    font-size: 1rem;
  }
  .drop1 {
    width: 250px;
    height: 250px;
  }
  .drop2 {
    width: 180px;
    height: 180px;
  }
  .drop3 {
    width: 100px;
    height: 100px;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  .container {
    padding: 2rem 1.2rem;
  }
  .logo {
    font-size: 2.2rem;
  }
  .badge {
    font-size: 0.75rem;
    padding: 0.3rem 1rem;
  }
  .content h2 {
    font-size: 1.5rem;
  }
  .progress-section {
    padding: 1.2rem;
  }
  .status-header {
    font-size: 0.85rem;
  }
}
