body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}

.video-background {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}

.video-background video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

#runningTextContainer {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  text-align: center;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.3);
}

#runningText {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  animation: marquee linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.container {
  max-width: 600px;
  padding: 20px;
  text-align: center;
}

h1 {
  font-size: 26px;
  color: #fff;
  top: 300px;
}

.container p {
  font-size: 15px;
  color: #fff;
  margin-bottom: 200px;
}

.join-button {
  display: inline-block;
  position: center;
  margin-bottom: 80px;
  padding: 9px 20px;
  background-color: #e22b59;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  border-radius: 5px;
}

.join-button span {
  font-weight: bold;
  margin-left: 5px;
  animation: blink 0.8s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.footer {
  font-size: 13px;
  color: #fff;
  position: fixed;
  bottom: -3px;
  width: 100%;
}

img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}