body {
  background: #f0ece4;
  display: flex;
  justify-content: center;
  font-family: Georgia, serif;
}

.scene {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}

.hotspot { cursor: pointer; }
.hotspot .dot { fill: #c0392b; opacity: .88; }
.hotspot:hover .dot { opacity: 1; fill: #922b21; }

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}
.scene svg { animation: floatUp 4s ease-in-out infinite; }

@keyframes glassShimmer {
  0%, 100% { opacity: .12; }
  50%       { opacity: .28; }
}
.shimmer { animation: glassShimmer 3.5s ease-in-out infinite; }

.panel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 210px;
  background: rgba(250,247,240,.97);
  border: 1.5px solid #b8a070;
  border-radius: 3px;
  padding: 16px 15px 14px;
  box-shadow: 3px 6px 24px rgba(80,50,20,.2);
}
.panel.active { display: block; }
.panel-tag {
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c0392b;
  margin-bottom: 7px;
}
.panel-title {
  font-size: 15px;
  color: #3d2e1a;
  margin-bottom: 8px;
  border-bottom: 1px solid #c8a84b;
  padding-bottom: 5px;
}
.panel-body { font-size: 12px; line-height: 1.75; color: #4a3820; }
.close-btn {
  position: absolute;
  top: 7px; right: 9px;
  background: none;
  border: none;
  font-size: 15px;
  color: #9a7a3a;
  cursor: pointer;
}
.hint {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: #9a7a3a;
  font-style: italic;
  opacity: .65;
}
