/* Basic reset & look */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: #fff;
}

/* Ensure interactive elements receive clicks */
* { -webkit-tap-highlight-color: transparent; }

/* Container */
.main-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Main image cover */
.main-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

/* Hotspots */
.hotspot {
  position: absolute;
  width: 20px;
  height: 20px;
  background: red;
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  animation: pulse 1.5s infinite;
  z-index: 10;
}
@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.4); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  padding-top: 60px;
}
.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  animation: zoom 0.3s;
}
@keyframes zoom { from{ transform: scale(.9)} to{ transform: scale(1)} }
.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

/* Bottom-centered Play button (fixed) */
#playButton {
  position: fixed;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  background: rgba(220,20,60,0.95);
  color: #fff;
  border-radius: 50%;
  border: none;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}
#playButton:hover { transform: translateX(-50%) scale(1.06); }

/* Speaker status */
#speakerStatus {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #888;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  color: #fff;
  font-size: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
#speakerStatus img { width: 36px; height: 36px; border-radius: 50%; margin-bottom: 4px; }

/* Speaker status states */
#speakerStatus.playing { background: #0f0; color: #000; box-shadow: 0 0 14px #0f0; }
#speakerStatus.paused  { background: #888; color: #fff; }

/* Call button (kept) */
.call-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #28a745;
  border-radius: 50%;
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  z-index: 3000;
}
.call-button i { color: #fff; font-size: 26px; }


#tapToUnmute {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  z-index: 4000;
  cursor: pointer;
  backdrop-filter: blur(3px);
}
