
.hud-navigation[data-v-94bbe728] {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Three Dots Trigger Button */
.hud-trigger[data-v-94bbe728] {
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.hud-trigger[data-v-94bbe728]:hover {
  background: rgba(0, 0, 0, 1);
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
}
.hud-trigger[data-v-94bbe728]:active {
  transform: scale(0.95);
}
.hit-bridge[data-v-94bbe728] {
  position: absolute;
  top: -20px; /* Taller bridge */
  right: 100%;
  width: 70px; /* Slightly wider to be safe */
  height: calc(100% + 40px);
  background: transparent;
  pointer-events: auto;
}
.dot[data-v-94bbe728] {
  width: 4px;
  height: 4px;
  background: #ffffff;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.hud-open .dot[data-v-94bbe728] {
  background: #ffffff;
}

/* Sliding Panel */
.hud-panel[data-v-94bbe728] {
  position: absolute;
  top: 0;
  right: 60px; /* Aligned with hit-bridge start */
  width: 280px;
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  transform: translateX(100%) scale(0.95);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 80vh;
  overflow-y: auto;
}
.panel-visible[data-v-94bbe728] {
  transform: translateX(0) scale(1);
  opacity: 1;
  visibility: visible;
}
.hud-content[data-v-94bbe728] {
  padding: 24px;
}
.hud-title[data-v-94bbe728] {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 20px 0;
  text-align: left;
}

/* Navigation Items */
.hud-nav[data-v-94bbe728] {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-divider[data-v-94bbe728] {
  font-size: 10px;
  font-weight: 700;
  color: #6366f1;
  padding: 12px 16px 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}
.hud-nav-item[data-v-94bbe728] {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 14px;
}
.hud-nav-item[data-v-94bbe728]:hover {
  background: rgba(168, 85, 247, 0.2);
  color: #ffffff;
  transform: translateX(6px);
  box-shadow: inset 0 0 10px rgba(168, 85, 247, 0.1);
}
.hud-nav-item.router-link-active[data-v-94bbe728] {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-weight: 600;
}
.hud-nav-item span[data-v-94bbe728] {
  flex: 1;
  text-align: left;
}

/* Footer */
.hud-footer[data-v-94bbe728] {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #888;
}

/* Backdrop for Mobile */
.hud-backdrop[data-v-94bbe728] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
  backdrop-filter: blur(2px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
.hud-navigation[data-v-94bbe728] {
    top: 16px;
    right: 16px;
}
.hud-panel[data-v-94bbe728] {
    width: calc(100vw - 32px);
    right: -16px;
    max-width: 320px;
}
.hud-trigger[data-v-94bbe728] {
    width: 44px;
    height: 44px;
}
}

/* Smooth scrollbar */
.hud-panel[data-v-94bbe728]::-webkit-scrollbar {
  width: 4px;
}
.hud-panel[data-v-94bbe728]::-webkit-scrollbar-track {
  background: transparent;
}
.hud-panel[data-v-94bbe728]::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}
.hud-panel[data-v-94bbe728]::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}
