/* =========================
   GLOBAL RESET / KIOSK
========================= */
* {
  box-sizing: border-box;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  text-size-adjust: none;
}

/* FIX MOBILE HEIGHT BUG */
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #000;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #fff;
}

/* =========================
   PANORAMA (FULLSCREEN FIX)
========================= */
#pano {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  background: #000;
  overflow: hidden;
  padding-bottom: env(safe-area-inset-bottom);
}

/* =========================
   LINK HOTSPOT (ARROW)
========================= */
.link-hotspot {
  position: absolute;
  width: 70px;
  height: 70px;
  margin-left: -35px;
  margin-top: -35px;
  opacity: 0.95;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.link-hotspot:active {
  transform: scale(0.92);
}

.link-hotspot img {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* REMOVE TOOLTIP */
.link-hotspot-tooltip,
.link-hotspot * {
  display: none !important;
}

/* =========================
   INFO HOTSPOT
========================= */
.info-hotspot {
  position: absolute;
  opacity: 0.95;
}

.info-hotspot-header {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(103,115,131,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-hotspot-header img {
  width: 22px;
  height: 22px;
}

.info-hotspot-text {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  padding: 16px;
  background: rgba(20,20,30,0.95);
  border-radius: 14px;
  font-size: 14px;
  visibility: hidden;
}

.info-hotspot.visible .info-hotspot-text {
  visibility: visible;
}

/* =========================
   POPUP PANEL
========================= */
.info-popup {
  position: fixed;
  left: 50%;
  bottom: -100%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 420px;
  background: #111;
  color: #fff;
  border-radius: 18px;
  padding: 16px;
  z-index: 3000;
  transition: bottom 0.4s ease;
}

.info-popup.visible {
  bottom: 20px;
}

.info-popup img {
  width: 100%;
  border-radius: 12px;
}

/* =========================
   INTRO SCREEN
========================= */
#introScreen {
  position: fixed;
  inset: 0;
  cursor: pointer;
}

#introScreen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.intro-overlay h1 {
  font-size: 40px;
}

.intro-overlay p {
  font-size: 18px;
  background: rgba(0,0,0,0.6);
  padding: 12px 24px;
  border-radius: 30px;
}
