body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: "Xiberonne", serif;
  cursor: none;
}

.content-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.prayer-hour {
  position: absolute;
  left: 2rem;
  top: 2rem;
  color: #000;
  z-index: 20;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.prayer-hour .initial {
  font-family: "CamelotCaps";
  font-size: min(10rem, 12vw);
  line-height: 1;
}

.prayer-hour .name {
  margin-top: 0.4em;
}

.prayer-hour .verse {
  font-size: min(1.8rem, 2.5vw);
  line-height: 1.4;
  margin-left: 0.75em;
  white-space: pre-line;
}

#video-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

#scene-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Effect overlays */
.scanline-overlay,
.moving-scanline,
.noise,
.vhs {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.2);
  visibility: hidden;
}

#video {
  display: none;
}

/* Loading screen styles */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  color: #d4af37;
  font-family: 'Xiberonne', serif;
  transition: opacity 0.5s;
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-spinner {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(212, 175, 55, 0.1);
  border-left-color: #d4af37;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

.loading-text {
  color: #d4af37;
  font-size: 24px;
  text-align: center;
}

/* Navigation hint styles */
.nav-hint {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  font-family: monospace;
  font-size: 16px;
  z-index: 100;
  pointer-events: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 10px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
}

/* VR Button styles */
button.VRButton {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Font faces */
@font-face {
  font-family: "CamelotCaps";
  src: url("fonts/CamelotCaps.ttf") format("truetype");
}

@font-face {
  font-family: "Xiberonne";
  src: url("fonts/xiberonne.ttf") format("truetype");
}

/* Animations */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
