@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Geostar+Fill&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik+Microbe&display=swap");
.body-style {
  background-color: #0d0d0d;
  color: #f0f0f0;
  font-family: "Orbitron", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 98.5vh;
  margin: 0;
}

.container-style {
  text-align: center;
  padding: 20px;
  background: rgba(20, 20, 20, 0.9);
  border: 2px solid #29d398;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(41, 211, 152, 0.7);
}

.title-style {
  font-family: "Geostar Fill", cursive;
  font-size: 3rem;
  color: #a10c20;
}

.slogan-style {
  font-size: 1.2rem;
  color: #f03366;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.countdown-container {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.countdown-item {
  font-family: "Rubik Microbe", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.days-style {
  color: #29d398;
}

.hours-style {
  color: #1b8a73;
}

.minutes-style {
  color: #f2a75d;
}

.seconds-style {
  color: #f03366;
  animation: countdownFlash 1s infinite;
}

.final-message {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  color: #a10c20;
  margin-top: 10px;
  opacity: 0;
  animation: finalMessageFadeIn 1s forwards;
  animation-delay: 5s;
}

.easter-egg {
  margin-top: 20px;
  padding: 10px;
  background: rgba(20, 20, 20, 0.95);
  border: 2px solid #a10c20;
  border-radius: 8px;
  animation: fadeIn 2s ease-in-out;
}

.infection {
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.2rem;
  color: #00ff41; /* Matrix green */
  /* text-shadow:
      0px 0px 5px #00ff41,
      0px 0px 10px rgba(0, 255, 65, 0.7),
      0px 0px 15px rgba(0, 255, 65, 0.5); */
  overflow: hidden; /* Hides the text initially */
  white-space: nowrap; /* Prevents the text from wrapping */
  border-right: 2px solid #00ff41; /* Cursor effect */
  display: inline-block; /* Ensures the text width can be animated */
  animation: typing 5s steps(40, end), blinkCursor 0.7s step-end infinite;
}

/* Keyframe animation for typing effect */
@keyframes typing {
  from {
    width: 0; /* Start with no width */
  }
  to {
    width: 100%; /* Reveal the full text */
  }
}
/* Keyframe animation for blinking cursor */
@keyframes blinkCursor {
  from {
    border-right-color: #00ff41;
  }
  to {
    border-right-color: transparent;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes titleOscillate {
  0% {
    color: rgba(20, 20, 20, 0.9); /* Background black */
    text-shadow: 0px 0px 10px rgba(20, 20, 20, 0.9), 0px 0px 15px rgba(20, 20, 20, 0.9);
  }
  50% {
    color: #a10c20; /* Blood red */
    text-shadow: 0px 0px 15px #a10c20, 0px 0px 20px rgba(161, 12, 32, 0.7);
  }
  100% {
    color: #1b6faf; /* Cool space blue */
    text-shadow: 0px 0px 15px #1b6faf, 0px 0px 20px rgba(27, 111, 175, 0.7);
  }
}
@keyframes countdownFlash {
  0%, 100% {
    color: #f03366;
    text-shadow: 0px 0px 10px #f03366, 0px 0px 20px rgba(240, 51, 102, 0.5);
  }
  50% {
    color: rgba(20, 20, 20, 0.9);
    text-shadow: 0px 0px 8px rgba(20, 20, 20, 0.9), 0px 0px 15px rgba(20, 20, 20, 0.9);
  }
}
@keyframes finalMessageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
