* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

#video-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  position: relative;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hide cursor after inactivity */
body.hide-cursor {
  cursor: none;
}

#loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 24px;
  font-family: Arial, sans-serif;
  z-index: 10;
}

#loading.hidden {
  display: none;
}

/* Fullscreen styles */
video:-webkit-full-screen {
  width: 100%;
  height: 100%;
}

video:fullscreen {
  width: 100%;
  height: 100%;
}
