/* ────── Animation Up ────── */
.fade-up {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(2px);
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ────── Block ────── */
#Block {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  text-align: center;
}

#Block svg {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  fill: #fff;
}

#Block h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

#Block p {
  font-size: 16px;
  max-width: 400px;
}
