body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  background-color: #000000;
  overflow: hidden; /* Чтобы не было прокрутки при появлении матрицы */
}

#matrix {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Матрица будет ПОД текстом */
  display: block;
  opacity: 0; /* Изначально невидима */
  transition: opacity 2s ease; /* Плавное появление */
}

.center-text {
  font-size: 140px;
  color: #00ff00;
  text-shadow: 0 0 15px #00ff00;
  cursor: pointer;
  user-select: none;
  z-index: 1;
   /* Плавное исчезновение */
  transition: opacity 0.0s ease, transform 0.0s ease;
}

.hidden {
  opacity: 0;
  pointer-events: none; /* Чтобы нельзя было кликнуть повторно */
  /* Эффект уменьшения при исчезновении */
  transform: scale(0.0);
}

/* Класс для запуска анимации */
.matrix-active {
  opacity: 1 !important;
}
