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

.video-list {
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.video-item {
  position: relative;
  z-index: 0;
  background: #33333344;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-direction: row;
  opacity: 1;
  animation: fadeIn 1.5s ease-out forwards;
  animation-delay: 1.8s;

  /* Dauerleuchten als Grundzustand */
  box-shadow: 0 0 12px #5500ff66;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px #5500ffcc;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Umdrehen bei jedem ungeraden Element */
.video-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.video-text {
  font-family: 'FormaDJRText-Bolt-Testing', sans-serif;
  flex: 1;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.4;
  padding-left: 1rem;
}

.video-item iframe {
  position: relative;
  z-index: 1;
  background-color: #33333344;
  border-radius: 0.5rem;
  width: 470px;
  height: 280px;
  border: none;
  margin: 1rem;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Verhältnis */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-index {
  align-items: center;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.video-asset {
  position: relative;
  z-index: 1;
  background: #33333344;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  opacity: 1;
  animation: fadeIn 1.5s ease-out forwards;
  animation-delay: 1.8s;

  /* Dauerleuchten als Grundzustand */
  box-shadow: 0 0 12px #5500ff66;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-asset:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px #5500ffcc;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*.video-script {*/
/*  align-items: center;*/
/*  font-family: 'FormaDJRText-Bolt-Testing', sans-serif;*/
/*  flex: 1;*/
/*  color: #fff;*/
/*  font-size: 1.5rem;*/
/*  !*padding: 1rem;*!*/
/*}*/

.video-asset video {
  position: relative;
  z-index: 1;
  background-color: #33333344;
  border-radius: 0.5rem;
  width: 300px;
  height: 525px;
  border: none;
  margin: 4.5rem;
}
