html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: #0d1117;
  font-family: sans-serif;
}

canvas {
  display: block;
}

.menu_background_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  background: rgba(13, 17, 23, 0.65);
  z-index: 5;
}

.hand_of_god_hud {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(18, 22, 32, 0.85);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  width: max-content;
  max-width: 90%;
  z-index: 10;
  pointer-events: auto;
}

.hud_statistics {
  display: flex;
  gap: 8px;
  align-items: center;
}

.statistic_entry {
  color: #e2e8f0;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 4px;
}

.god_points_text {
  color: #fbbf24;
}

.hud_powers_container {
  display: flex;
  gap: 8px;
}

.power_button {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cccccc;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.active_power_button {
  background: #fbbf24;
  border-color: white;
  color: #000000;
  font-weight: bold;
}

.hud_prompt_text {
  color: white;
  font-size: 12px;
  font-weight: normal;
}

.loading_screen_container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  backdrop-filter: blur(14px);
  background: rgba(13, 17, 23, 0.75);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 100;
  text-align: center;
}

.loading_spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: #fbbf24;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

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

.loading_status_text {
  font-size: 1.5em;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.loading_sub_text {
  font-size: 1em;
  color: #cccccc;
  margin: 0;
}

.handsfree-debug {
  display: none;
}