:root {
  --accent-color: #4FEBFE;
  --heading-color: #ffffff;
  --body-text-color: #ffffff;
  --heading-font-family: 'Poppins', sans-serif;
  --body-font-family: 'Muli', sans-serif;
  --heading-font-size: 50px;
  --body-font-size: 16px;
  --heading-letter-spacing: 0px;
  --body-letter-spacing: 0px;
  --heading-line-height: 1.2;
  --body-line-height: 1.6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  color: var(--body-text-color);
  letter-spacing: var(--body-letter-spacing);
  
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font-family);
  color: var(--heading-color);
  line-height: var(--heading-line-height);
  letter-spacing: var(--heading-letter-spacing);
}

.main-area-wrapper {
  min-height: 100vh;
  padding: 30px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
}

.acs-icons-text {
  margin: 10px 0px;
}

.footer-copyright {
  color: #fff;
}

.main-area {
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 2px 5px 10px rgba(0,0,0,.5);
  min-height: 90vh;
}

.main-area::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.acs-navbar {
  width: 100%;
  padding: 20px 0;
}

.coming-soon-logo-wrapper img {
  max-width: 250px;
}

.acs-content {
  max-width: 850px;
  margin: 0 auto;
  margin-top:120px;
}

.coming-soon-heading {
  margin-bottom: 20px;
}

.coming-soon-heading h2 {
  font-size: var(--heading-font-size);
  font-weight: 700;
}

.coming-soon-text {
  margin-bottom: 80px;
  font-size: 1.1em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.acs-countdown {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.countdown-item {
  margin: 0 10px;
  background: var(--accent-color);
  color: var(--body-text-color);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 0 5px rgba(255,255,255,0.2);
}

.countdown-value {
  font-size: 1.2em;
  font-weight: bold;
  color: var(--body-text-color);
}

.countdown-label {
  font-size: 0.7em;
  text-transform: uppercase;
}

.acs-icons {
  margin-top: 20px;
}

.acs-icons a {
  display: inline-block;
  margin: 0 10px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.acs-icons a:hover {
  background-color: var(--accent-color);
  transform: scale(1.1);
}

.acs-footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .main-area-wrapper {
    padding: 15px;
  }

  .coming-soon-heading h2 {
    font-size: calc(var(--heading-font-size) * 0.8);
  }

  .coming-soon-text {
    font-size: 1em;
  }

  .countdown-item {
    width: 80px;
    height: 80px;
    margin: 0 5px;
  }

  .countdown-value {
    font-size: 1em;
  }

  .countdown-label {
    font-size: 0.5em;
  }
}

@media (max-width: 480px) {
  .countdown-item {
    width: 60px;
    height: 60px;
  }

  .countdown-value {
    font-size: 1.5em;
  }

  .countdown-label {
    font-size: 0.7em;
  }
}