.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

.hotspot-marker {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -50%);
  z-index: 10;
  cursor: pointer;
  pointer-events: auto;
  transition: opacity 0.3s;
}

.hotspot-marker .hotspot-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
  animation: hotspot-pulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  transition: transform 0.2s, background 0.2s;
}

.hotspot-marker .hotspot-icon:hover {
  transform: scale(1.2);
  background: #fdc003;
}

.hotspot-marker .hotspot-icon .material-symbols-outlined {
  color: #0d47a1;
  font-size: 22px;
  transition: color 0.2s;
}

.hotspot-marker .hotspot-icon:hover .material-symbols-outlined {
  color: #6c5000;
}

.hotspot-marker .hotspot-label {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 999px;
  margin-top: 4px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

@keyframes hotspot-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(253, 192, 3, 0.5), 0 2px 16px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(253, 192, 3, 0), 0 2px 16px rgba(0, 0, 0, 0.3);
  }
}

.psv-container {
  width: 100% !important;
  height: 100% !important;
}

.glass-header {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-nav {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.glass-control {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.location-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-card.active {
  border-color: #FFC107;
  box-shadow: 0 0 0 2px #FFC107;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.tap-scale {
  transition: transform 0.15s;
}
.tap-scale:active {
  transform: scale(0.96);
}

@media (max-width: 768px) {
  aside {
    display: none !important;
  }
  header nav {
    display: none !important;
  }
  header .desktop-only {
    display: none !important;
  }
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: flex !important;
  }
  .controls-desktop {
    display: none !important;
  }
  .controls-mobile {
    display: flex !important;
  }
  .footer-desktop {
    display: none !important;
  }
  .hotspot-marker .hotspot-label {
    font-size: 10px;
    padding: 2px 8px;
  }
  .hotspot-marker .hotspot-icon {
    width: 32px;
    height: 32px;
  }
  .hotspot-marker .hotspot-icon .material-symbols-outlined {
    font-size: 18px;
  }
}

@media (min-width: 769px) {
  .mobile-only {
    display: none !important;
  }
  .controls-mobile {
    display: none !important;
  }
  .footer-mobile {
    display: none !important;
  }
}
