body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  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);
}

/* 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;
}

#countdown {
  font-size: 24px;
  margin: 20px 0;
}

.icons {
  margin-top: 20px;
}
.acs-social-icon {
  font-size: 30px;
}
.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 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 10px;
}

.countdown-value {
  font-size: 3em;
  font-weight: bold;
  color: #ffffff;
}

.countdown-label {
  font-size: 0.8em;
  text-transform: uppercase;
  color: #ffffff;
  margin-top: 5px;
}

.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;
}