@font-face {
  font-family: 'FormaDJRText-Black-Testing';
  src: url('/FormaDJRText-Black-Testing.woff2') format('woff2'),
  url('/FormaDJRText-Black-Testing.woff') format('woff');
  font-style: normal;
  font-weight: 900;
}

@font-face {
  src: url('FormaDJRText-Medium-Testing.woff2') format("woff2"),
  url('FormaDJRText-Medium-Testing.woff') format("woff");
  font-family: 'FormaDJRText-Medium-Testing';
  font-style: normal;
  font-weight: 500;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  width: 100%;
  max-width: 100%;
  height: auto;
  overflow-x: hidden;
  box-sizing: border-box;
}

.animated-heading {
  position: relative;
  font-family: 'FormaDJRText-Black-Testing', sans-serif;
  font-weight: normal;
  font-size: 4.2rem;
  color: #5500ff;
  text-align: center;

  /* Scharfer Text + 3D-Schatten */
  text-shadow: 0 -1px 0 #fff;

  z-index: 2;

  opacity: 0.2;
  transform: translateY(10px);
  animation: fadeUp 1.5s ease-out forwards;
  animation-delay: 0.1s;

  mask-image: linear-gradient(to top, transparent 0%, black 50%, black 100%);
  -webkit-mask-image: -webkit-linear-gradient(to top, transparent 0%, black 50%, black 100%);
}

.animated-heading::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: transparent;
  z-index: 1;

  font-family: inherit;
  font-size: inherit;
  text-align: inherit;

  text-shadow:
    0 0 1px #5500ff,
    0 0 2px #5500ff88;

  mask-image: linear-gradient(to top, black 70%, transparent 100%);
  -webkit-mask-image: -webkit-linear-gradient(to top, black 70%, transparent 100%);
  pointer-events: none;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated-tag {
  position: relative;
  font-family: 'Brush Script MT', cursive;
  font-size: 2.1rem;
  color: #fff;
  text-align: center;
  text-shadow:
    0 0 5px #fff;
  z-index: 2;
  margin-top: -2.5em;
  margin-right: -6.5em;

  opacity: 0;
  transform: translateY(5px);

  /* Animation fadeIn */
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 1.1s;

  /* Maskierung bleibt erhalten */
  mask-image: linear-gradient(to top, transparent 0%, black 30%, black 100%);
  -webkit-mask-image: -webkit-linear-gradient(to top, transparent 0%, black 30%, black 100%);
}

/* Keyframes nur für Opacity */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.split{
  font-family: 'FormaDJRText-Medium-Testing', sans-serif;
  text-align: center;
  font-size: 3rem;
  color: #fff;
}

.downtext{
  font-family: 'FormaDJRText-Medium-Testing', sans-serif;
  text-align: center;
  font-size: 12px;
  color: #fff;
}
