    
    
    
  .glow-text {
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: linear-gradient(90deg, #ffb703, #00e0ff, #ff4d6d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeSlideGlow 2.5s ease-out, shimmer 6s infinite linear;
  background-size: 200%;
  opacity: 0;
  text-align: center;
  margin: 20px 0;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
  
}

@keyframes fadeSlideGlow {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
 
    
    
    body, html {
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: "Poppins", sans-serif;
      background-color: #000;
      color: #fff;
    }

    .dlab-coming-soon {
      background: url('images/CLG.jpg') no-repeat center center/cover;
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .overlay-black-light::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.65);
      backdrop-filter: blur(3px);
      z-index: 1;
    }

    .dlab-coming-bx {
      position: relative;
      z-index: 2;
      text-align: center;
      animation: fadeIn 1.8s ease-out;
    }

    .logo-header img {
      width: 120px;
      height: auto;
      border-radius: 20px;
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
      animation: floatLogo 3s ease-in-out infinite;
    }

    .coming-soon-content h2 {
      font-size: 3rem;
      font-weight: 600;
      text-transform: uppercase;
      background: linear-gradient(90deg, #ffb703, #00e0ff, #ff4d6d);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: textFlow 4s linear infinite;
      letter-spacing: 3px;
    }

    .countdown {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      margin-top: 30px;
    }

    .date {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      padding: 20px 25px;
      backdrop-filter: blur(5px);
      transition: transform 0.3s;
      min-width: 100px;
    }

    .date:hover {
      transform: translateY(-6px);
    }

    .time {
      display: block;
      font-size: 2.2rem;
      font-weight: bold;
      color: #ffb703;
      text-shadow: 0 0 10px rgba(255, 183, 3, 0.7);
    }

    .date span {
      display: block;
      font-size: 1rem;
      color: #ddd;
    }

    .site-button {
      display: inline-block;
      padding: 10px 30px;
      border-radius: 50px;
      font-weight: 500;
      font-size: 1rem;
      transition: all 0.3s ease;
      text-decoration: none;
      color: #fff;
      margin: 0 10px;
    }

    .site-button.radius-xl {
      border-radius: 50px;
    }

    .site-button.outline.white {
      border: 2px solid #fff;
      background: transparent;
    }

    .site-button.outline.white:hover {
      background: #fff;
      color: #000;
    }

    .site-button {
      background: linear-gradient(90deg, #ffb703, #ff4d6d);
      border: none;
    }

    .site-button:hover {
      background: linear-gradient(90deg, #ff4d6d, #ffb703);
    }

    .m-t50 {
      margin-top: 50px;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes floatLogo {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    @keyframes textFlow {
      0% { background-position: 0% 50%; }
      100% { background-position: 100% 50%; }
    }

    @media (max-width: 768px) {
      .coming-soon-content h2 {
        font-size: 2rem;
      }
      .time {
        font-size: 1.6rem;
      }
    }
