#fw-section-links-list-1752987423 {
--color-primary: #ffffff;
--color-primary-rgb: 255, 255, 255;
--color-background: #000000;
--color-background-rgb: 0, 0, 0;
--color-on-primary: #000000;
--color-on-primary-rgb: 0, 0, 0;
--color-on-background: #35dae8;
--color-on-background-rgb: 53, 218, 232;
--color-product-image-background: #35dae8;
--color-background-brightness: 0;
background-color: var(--color-background);
color: var(--color-on-background);

}





#fw-section-password {

/* Style the heading ("COMING SOON!") */
.password__subheading {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px 16px;
  border-radius: 12px;
  display: inline-block;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Style the description ("The revolution is going to look so good...") */
.password__description {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px 16px;
  border-radius: 12px;
  display: inline-block;
  font-weight: 600;
  color: #ffffff;
  margin: 10px auto 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Countdown/timer section */
.countdown-timer,
.countdown,
.password-page__timer,
.password-page__main {
  background-color: rgba(0, 0, 0, 0.75);
  padding: 20px 30px;
  border-radius: 16px;
  display: inline-block;
  backdrop-filter: blur(2px);
  text-align: center;
  margin: 20px auto;
  position: relative;
  z-index: 2;
}

/* Centering structures */
.password-page__main,
.password__header,
.password__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Motto under countdown */
.countdown::after {
  content: "Game With No Apologies";
  display: block;
  font-style: italic; /* <- This adds the italic style */
  margin-top: 16px;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  color: #35DAE8;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 8px 12px;
  border-radius: 12px;
}


/* Stronger selector targeting and animated glow */
.password__subheading h1,
.password__subheading span,
.password__subheading {
  color: #fff !important;
  text-shadow: 0 0 10px #35DAE8, 0 0 20px #35DAE8 !important;
  animation: forceGlow 3.5s ease-in-out infinite !important;
}

@keyframes forceGlow {
  0% {
    text-shadow: 0 0 10px #35DAE8, 0 0 20px #35DAE8;
  }
  50% {
    text-shadow: 0 0 25px #35DAE8, 0 0 50px #35DAE8;
  }
  100% {
    text-shadow: 0 0 10px #35DAE8, 0 0 20px #35DAE8;
  }
}

}