.screen_tv {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  /*transition: opacity 0.5s ease, transform 0.5s ease;*/
  overflow: hidden;
  z-index: 1000;
  background: #16222A; /* Fallback */
  background: -webkit-linear-gradient(to left, #16222A, #3A6073);
  background: linear-gradient(to left, #16222A, #3A6073);
  background-size: cover;
  background-image: url('https://cldup.com/gn3s3Fg75t.gif'); /* TV static GIF */
}

.content_tv {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1100; /* Ensure it appears above the TV effect */
    text-align: center;
    font-family: "DejaVu Serif";
}

.spinner {
    position: absolute;
    top: 60%; /* Adjust vertical position */
    left: 50%; /* Adjust horizontal position */
    transform: translate(-50%, -50%); /* Center spinner */
    z-index: 1100;
}

.bounce1, .bounce2, .bounce3 {
    /*background-color: #fff;*/
    width: 15px;
    height: 15px;
    margin: 8px;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
    background-color: yellow !important;
}

/* Keyframes (unchanged) */
/*@keyframes bounce {*/
/*    0%, 80%, 100% {*/
/*        transform: scale(0);*/
/*    }*/
/*    40% {*/
/*        transform: scale(1);*/
/*    }*/
/*}*/

/*.screen.hidden {*/
/*  opacity: 0;*/
/*  transform: scale(0.9);*/
/*  pointer-events: none;*/
/*}*/

/*.qode_slider_preloader {*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 0;*/
/*  background: #e1eef6;*/
/*  z-index: 1000;*/
/*}*/

/*.content_inner {*/
/*  display: none; !* Hide main content initially *!*/
/*}*/
