body {
  margin: 0;
  overflow: hidden;
  overscroll-behavior: none;
  /* Prevents pull-to-refresh */
  touch-action: none;
  /* Prevents default touch behaviors */
  background: #1a1a1a;
  font-family: "Arial", sans-serif;
}

html {
  overscroll-behavior: none;
  touch-action: none;
}

#loading-screen {
  position: fixed;
  inset: 0;
  background: black;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: sans-serif;
  font-size: 1.2rem;
  z-index: 9999;
}

.spinner {
  border: 4px solid #444;
  border-top: 4px solid #09f;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#logo {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  pointer-events: none;
}

#logo img {
  height: 140px;
  width: auto;
}

@media (max-width: 600px) {
  #logo img {
    height: 60px;
  }
}

#property-info {

  position: fixed;
  
  bottom: 16px;
  left: 16px;
  
  background: rgba(255, 255, 255, 0.8);
  color: #111;
  padding: 16px;
  border-radius: 8px;
  max-width: 300px;
  font-family: sans-serif;
  font-size: 0.95rem;
  z-index: 9999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  
}

@media (max-width: 600px) {
  #property-info {
    font-size: 0.85rem;
    padding: 12px;
    max-width: 90%;
    left: 5%;
    bottom: 12px;
  }
}

#site-name {
  position: fixed;
  top: 10px;
  left: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  color: rgb(0, 0, 0);
  text-decoration: none;
  z-index: 1000; /* ensures it's above the canvas/3D scene */
}

#site-name:hover {
  color: #0f0f0f; /* Bootstrap blue */
}
