body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: var(--body-font-family, 'Muli'), sans-serif;
    font-size: var(--body-font-size, 16px);
    letter-spacing: var(--body-letter-spacing, 0px);
    line-height: var(--body-line-height, 1.6);
    color: var(--body-text-color, #fff);
  }

  header.acs-navbar {
    padding: 10px 80px;
}
  
.acs-class-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
   
}

.acs-social-icon {
  font-size: 30px;
}

.countdown-item {
  border: 1px solid;
  padding: 10px;
  min-width: 150px;
  display: flex;
  align-items: center;
  border-radius: 5px;
}


  /* Background styles based on background type */
  body.background-color {
    background-color: var(--background-color, #00091B);
  }
  
  body.background-gradient {
    background-image: linear-gradient(var(--gradient-direction, to right), var(--gradient-start, #00091B), var(--gradient-end, #0D253F));
  }
  
  body.background-image {
    background-image: url(var(--background-image));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  body.background-video {
    overflow: hidden;
  }
  
  body.background-video::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay to ensure text readability */
  }
  
  #background-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
  }
  .coming-soon-text {
    color: var(--body-text-color, #fff);
  
  }
  @keyframes fadeIn {
    from {top: 20%; opacity: 0;}
    to {top: 100; opacity: 1;}
  }
  
  .wrapper {
    text-align: center;
    animation: fadeIn 1000ms ease;
  }
  
  .logo, .logo-text {
    margin-bottom: 20px;
  }
  
  .logo {
    max-width: 200px;
    height: auto;
  }
  
  h1,h2 {
    font-size: var(--heading-font-size, 50px);
    font-family: var(--heading-font-family, 'Poppins'), sans-serif;
    margin-bottom: 0;
    line-height: var(--heading-line-height, 1.2);
    font-weight: 700;
    color: var(--heading-color, #fff);
    letter-spacing: var(--heading-letter-spacing, 0px);
  }
  
  .coming-soon-heading {
    margin: 20px 0px;
  }
  
  .coming-soon-text {
    max-width: 950px;
  }
  
  .dot {
    color: var(--accent-color, #4FEBFE);
  }
  
  p {
    margin: 18px 0;
  }
  
  .acs-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .countdown-value {
        font-size: 110px;
        line-height: 1;
        color: #fff;
        text-transform: uppercase;
        font-weight: bold;
        justify-content: left;
        display: flex;
        text-align: left;
    }
    
  .icons {
    margin-top: 20px;
  }
  
  .icons a {
    display: inline-block;
    margin: 0 10px;
    text-decoration: none;
    color: var(--accent-color, #4FEBFE);
  }
  
  .icons i {
    background: var(--body-text-color, #fff);
    height: 15px;
    width: 15px;
    padding: 13px;
    border-radius: 50px;
    border: 2px solid var(--body-text-color, #fff);
    transition: all 200ms ease;
    position: relative;
  }
  
  .icons i:hover, .icons i:active {
    color: var(--body-text-color, #fff);
    background: var(--accent-color, #4FEBFE);
    border-color: var(--accent-color, #4FEBFE);
    cursor: pointer;
    transform: scale(1.2);
  }
  
  a {
    color: var(--accent-color, #4FEBFE);
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  

  
  .countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10px;
  }
  
  .acs-main-content {
    padding-top: 150px;
    padding-bottom: 150px;
}

.coming-soon-text {
    margin: 40px 0px;
}

  
  .countdown-label {
    font-size: 0.8em;
    text-transform: uppercase;
    color: #ffffff;
    margin-top: 5px;
    text-align:left;
  }
  
  .coming-soon-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .coming-soon-footer a {
    color: #ffffff;
    text-decoration: none;
  }
  
  .coming-soon-footer a:hover {
    text-decoration: underline;
  }