.title-block > .ver {
  margin-top: 6rem;
}

.title-block h1 {
  color: white;
  text-align: center;

  text-shadow:
    3px 3px 6px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(255, 223, 120, 0.4),
    0 0 20px rgba(255, 223, 120, 0.3);

  opacity: 0;
  transform: translateY(-15px);
  animation: fadeInDown 1s ease-out forwards;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.title-names {
  text-shadow:
    1px 1px 2px rgba(44, 61, 20, 0.4),
    0 0 6px rgba(255, 245, 220, 0.7),
    0 0 12px rgba(255, 248, 210, 0.5);


  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.5s;

  font-weight: 530;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.date h1,
.date h2,
.date p,
.timer .hint {
  text-shadow:
    2px 2px 6px rgba(0, 0, 0, 0.3),
    0 0 10px rgba(0, 0, 0, 0.2);
}


.timer-value {
  background-color: var(--accent1);
  color: white !important;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

.date h1,
.date h2 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.timer .hint {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.date > .hor {
  overflow: hidden;
  display: flex;
  gap: .5rem;
}


.date > .hor p {
  opacity: 0;
  transform: translateX(-50px) skewX(-15deg);
  animation: revealDate 0.8s ease-out forwards;
}

.date > .hor p:nth-child(1) { animation-delay: 0.2s; } /* 07 */
.date > .hor p:nth-child(2) { animation-delay: 0.35s; } /* /  */
.date > .hor p:nth-child(3) { animation-delay: 0.5s; } /* 09 */
.date > .hor p:nth-child(4) { animation-delay: 0.65s; } /* /  */
.date > .hor p:nth-child(5) { animation-delay: 0.8s; } /* 2025 */


.special-glow {
  position: relative;
  font-family: Jost;
  padding: 0.65rem 0;
  background: linear-gradient(90deg, #f7c6c7, #f7e3a1, #f7c6c7);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: shineText 3s linear infinite;
}

.special-glow::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f7c6c7, #f7e3a1, #f7c6c7);
  background-size: 200% auto;
  animation: underlineWave 3s linear infinite;
  border-radius: 2px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro-titles h1 {
  opacity: 0;
  animation-name: fadeInDown;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.intro-titles h1:nth-child(1) {
  animation-delay: 0.2s;
}
.intro-titles h1:nth-child(2) {
  animation-delay: 0.8s;
}
