  .flash {
      animation: flash 1s infinite;
  }

  @keyframes flash {
      50% {
          opacity: 0;
      }
  }
.flash2 {
      animation: flash 0.9s infinite;
  }

  @keyframes flash2 {
      50% {
          opacity: 0;
      }
  }
/*
  .explosion {
  position: absolute;
  width: 256px;
  height: 256px;
  background-image: url('/sprites/halfsized/explosion1.png');
  background-repeat: no-repeat;
  background-position: 0 0;
  animation: explode 0.5s steps(63) forwards;

  z-index: 999;
}
*/
/*
  .explosion {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: rgb(206, 26, 13);
    animation: explode 0.5s ease-out;
    opacity: 0;
    display: none; 
  }
*/
/*
  @keyframes explode {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -2048px 0px;
 
  }
} */ 
/*
  @keyframes explode {
    0% {
      width: 0;
      height: 0;
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      width: 40px;
      height: 40px;
      opacity: 0;
    }
  }
*/

  .container {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .left {
    position: absolute;
    left: 0;
    width: 960px;
    height: 500px;
    z-index: 1;
    background-color:transparent;
  }

  .right {
    position: absolute;
    right: 0;
    width: 960px;
    height: 500px;
    z-index: 1;
    background-color:transparent;
  }

  .full-width {
    position: absolute;
    left: 0;
    right: 0;
    width: 1920px;
    height: 500px;
    background-color:transparent;
    z-index: 2;
  }  

  .typing-container {
      display: flex;
      flex-direction: column;
      align-items: center;
   overflow: hidden;
      height: 70px;
  }
  
  .typing {
      overflow: hidden;
      white-space: nowrap;
      animation: typing 2s steps(20) forwards;
  }
  
  @keyframes typing {
      from { width: 0 }
      to { width: 100% }
  }
  
  .box {
      display: inline-block;
      width: 20px;
      height: 20px;
      margin: 5px;
  background-color: black;
      border: 1px solid black;
  }
  
  .fillwh {
      background-color: white;
  }
  
.crt {
    background-color: #000;
    background-image: radial-gradient(ellipse at center, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 70%, rgba(255,255,255,0) 100%);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 100vh;
    margin: 0;
    padding: 0;
    width: 226px; 
    height: 225px;
}

.crt.crtgreen {
  color: #0f0; /* set text color to green */
  text-shadow: 0px 0px 3px #0f0, 0px 0px 6px #0f0, 0px 0px 6px #0f0; /* add green glow effect */
}

.crt.crtred {
  color: #f01; /* set text color to green */
  text-shadow: 0px 0px 2px #f00, 0px 0px 5px #f00, 0px 0px 5px #f00; /* add green glow effect */
}
.progress-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.progress-bar {
  width: 80%;
  height: 10px;
  background-color: #000;
  border-radius: 10px;
  margin-top: 30px;
}
.fill-progress {
  height: 100%;
  background-color: #0f0 !important;
  border-radius: 10px;
  width: 0%;
  transition: width 1s ease-in-out;
}
#main-container {
    width: 100%;
    /* Add any additional styling needed for main-container */
}

#marqueelayer {
    z-index: 950; /* was 985 */
    color: white; /* White text */
    overflow: hidden;
    white-space: nowrap;
    top: -250px;
    position: relative;
    width: 1920px; /* Full width */
    height: 50px; /* Height of the marquee bar */
    line-height: 50px; /* Center text vertically */    
    /*box-sizing: border-box; */
    /*border: 2px solid #fff; */ /* Add a border around the marquee */
    /*border-radius: 5px; */ /* Make the border corners rounded */
    /*box-shadow: inset 0 0 10px #000; */ /* Add a beveled effect with an inner shadow */
    background-color: #000;  /* Add a background color to the marquee */
}

.scroll-text {
    position: absolute;
    display: inline-block;
    white-space: nowrap;
    right: 0; /* Start aligned to the right edge */
    animation: scrollText 14s linear forwards; /* Duration of the scroll animation */
    font-size: 20px; /* Larger font size */
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Verdana, Arial, sans-serif; /* Clear, readable font */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Text shadow for depth */
}
@keyframes scrollText {
    0% { transform: translateX(100%); } /* Start just off-screen to the right */
    100% { transform: translateX(-100vw); } /* End off-screen to the left */
}

/*
@keyframes scrollText {
  0% { left: 100%; }
  100% { left: -100%; }
}

/*
@keyframes scrollText {
   from { 
    -moz-transform: translateX(100vw);
    -webkit-transform: translateX(100vw);
    transform: translateX(100vw);
   }
   to {    
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
   }
}
/* 0% { transform: translateX(100vw); } 
     100% { transform: translateX(-100vw); } /* End off-screen to the left */
