html {
  font-family: 'Quattrocento Sans', sans-serif;
  background: #000;
  margin: 0;
  padding: 0;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
}

.loading-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  max-width: 90%;
  height: auto;
  padding: 20px 0;
}

.loading-text span {
  display: inline-block;
  margin: 0 5px;
  color: #fff;
  font-family: 'Quattrocento Sans', sans-serif;
  filter: blur(0px);
  animation: blur-text 1.5s infinite linear alternate;
}

/* Set individual animation delays for each span */
.loading-text span:nth-child(1) { animation-delay: 0s; }
.loading-text span:nth-child(2) { animation-delay: 0.2s; }
.loading-text span:nth-child(3) { animation-delay: 0.4s; }
.loading-text span:nth-child(4) { animation-delay: 0.6s; }
.loading-text span:nth-child(5) { animation-delay: 0.8s; }
.loading-text span:nth-child(6) { animation-delay: 1s; }
.loading-text span:nth-child(7) { animation-delay: 1.2s; }
.loading-text span:nth-child(8) { animation-delay: 1.4s; }
.loading-text span:nth-child(9) { animation-delay: 1.6s; }

@keyframes blur-text {
  0% {
    filter: blur(0px);
  }
  100% {
    filter: blur(4px);
  }
}

/* Watermark styling on the video wrapper */
.plyr__video-wrapper::after {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  content: 'Fibwatch.Com';
  font-size: 24px;
  font-weight: bold;
  color: #000;
  opacity: 0.2;
  pointer-events: none;
}

/* Responsive adjustments */
@media only screen and (max-width: 768px) {
  .loading-text {
    max-width: 95%;
    padding: 10px 0;
  }
  
  .plyr__video-wrapper::after {
    font-size: 20px;
  }
}

    