* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: white;
  }
  
  body {
    background-color: #1a202c;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 0; /* Removed extra padding */
    overflow: hidden; /* Prevent scrollbars */
    position: relative;
  }
  
  /* Ensures the background takes full width and height */
  .background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    filter: blur(3px); /* Apply blur to background */
    z-index: -1; /* Place the background behind all content */
  }
  
  /* Main Box */
  .maintenance-box {
    background: rgba(26, 32, 44, 0.95);
    border: 1px solid #ffffff22;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 540px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1; /* Keep the box in front of the background */
  }
  
  /* Gears aligned horizontally */
  .gear-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; /* only slight overlap */
    margin-bottom: 25px;
  }
  
  .gear {
    font-size: 70px;
  }
  
  .gear-light {
    color: #63b3ed;
    animation: spin 6s linear infinite;
  }
  
  .gear-dark {
    color: #2b6cb0;
    animation: spin-reverse 6s linear infinite;
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  @keyframes spin-reverse {
    to {
      transform: rotate(-360deg);
    }
  }
  
  /* Title + Text */
  h1 {
    font-size: 2em;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
  }
  
  .text-line {
    font-size: 16px;
    line-height: 1.6;
    margin: 5px 0;
  }
  
  /* Spacing */
  .spacer-md {
    height: 15px;
  }
  
  .spacer-lg {
    height: 25px;
  }
  
  /* Social Icons with vertical hover effect */
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
  }
  
  .social-icons a {
    font-size: 28px;
    position: relative;
    transition: transform 0.3s ease;
    color: white;
    overflow: hidden;
  }
  
  .social-icons a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(99, 179, 237, 0.2), transparent);
    transition: top 0.4s ease;
    z-index: -1;
  }
  
  .social-icons a:hover::before {
    top: 0%;
  }
  
  .social-icons a:hover {
    color: #63b3ed;
    transform: translateY(-3px);
  }
  