html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Arial', sans-serif;
  color: #fff;
  background-color: #000;
  letter-spacing: 0.5px;
}

h2 {
  font-family: 'Georgia', serif;
  font-size: 1.5rem;
  color: #FFD700;
  margin: 0 0 10px 0;
}

p {
  font-size: 1rem;
  margin: 0;
  color: #ddd;
}

#container {
  position: relative;
  width: 100%;
  height: 100%;
}

#scene-canvas {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
}

#info-panel {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 300px;
  padding: 20px;
  background-color: rgba(20, 20, 20, 0.95);
  border: 2px solid #FFD700;
  border-radius: 8px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

#info-panel.hidden {
  opacity: 0;
  transform: translateX(100%);
  pointer-events: none;
}

#info-content {
  margin-top: 10px;
}

#close-info {
  align-self: flex-end;
  background: none;
  color: #FFFFFF;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  margin-bottom: 10px;
}

#close-info:hover {
  color: #FFD700;
}

#info-toggle {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  color: #000;
  background-color: #FFD700;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  z-index: 1000;
}

#info-toggle:hover {
  background-color: #FFA500;
}

#zoom-range {
  position: absolute;
  bottom: 70px;
  left: 20px;
  width: 150px;
  padding: 5px;
  background-color: #333;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}
