html {
  touch-action: pan-x pan-y; /* Pinch-zoom OFF */
  overflow: hidden;
}

body {
  touch-action: pan-x pan-y;
  overflow: hidden;
  zoom: reset !important; /* Fallback */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  font-family: "Comic Neue", sans-serif;
  background: #add8e6;
  /* Light blue background to match the sky */
}

#background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

#background-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#content-container {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
}

#content-container svg {
  width: 100%;
  height: 150px;
  margin-top: -30px;
  /* Reduce the margin to decrease the gap */
}

#content-container text {
  font-size: 56px;
  stroke: #000000;
  stroke-width: 2px;
}

#bee {
  width: auto;
  height: 136px;
  margin-bottom: -20px;
  /* Reduce the margin to decrease the gap */
}

#name-container {
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}

#name-container::before {
  content: "";
  display: block;
  width: 400px;
  height: 2px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

#player-name {
  width: 400px;
  font-size: 24px;
  color: #000;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #000;
  text-align: center;
  outline: none;
  font-family: "Comic Neue", sans-serif;
  padding: 5px 0;
}

#player-name::placeholder {
  color: #000;
}

#play-now-button {
  padding: 10px 20px;
  font-size: 26px;
  color: #000;
  background-color: #fbff00;
  border-radius: 100px;
  border: 3px solid #000;
  cursor: pointer;
  transition: transform 0.2s ease;
  font-family: "Comic Neue", sans-serif;
}

#play-now-button:hover {
  transform: scale(1.1);
}

#footer {
  position: fixed;
  bottom: 6px;
  left: 11px;
  color: #000;
  font-family: "Comic Neue", sans-serif;
  font-size: 13px;
}

#version {
  position: fixed;
  bottom: 6px;
  right: 11px;
  color: #000;
  font-family: "Comic Neue", sans-serif;
  font-size: 13px;
}

#name-error,
#char-error {
  margin-top: 10px;
  font-size: 16px;
}
