/* Global Activity Panel — inline na navbar */

.global-activity-panel {
  position: relative;
  pointer-events: none;
  user-select: none;
}

.navbar-globe-slot {
  width: auto;
  max-width: 38vw;
}

.gap-hud {
  position: relative;
  padding: 0.25rem 0.375rem;
  background: linear-gradient(135deg, rgba(10, 26, 53, 0.88) 0%, rgba(5, 5, 5, 0.9) 100%);
  border: 1px solid rgba(108, 200, 255, 0.28);
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(30, 144, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
}

.gap-hud::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108, 200, 255, 0.35), transparent);
}

.gap-compact-row {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.gap-globe-container {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(108, 200, 255, 0.15);
  border-radius: 3px;
  background: rgba(5, 5, 5, 0.5);
  overflow: hidden;
}

#gap-globe-canvas {
  width: 40px;
  height: 40px;
  display: block;
}

.gap-info {
  display: flex;
  flex-direction: column;
  gap: 0.0625rem;
  min-width: 0;
}

.gap-info-top {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.gap-live-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 5px #22c55e;
  animation: gap-pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes gap-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.gap-header-text {
  font-family: 'Kanit', sans-serif;
  font-size: 0.45rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #6CC8FF;
  white-space: nowrap;
}

.gap-info-bottom {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.gap-counter-block {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.gap-counter {
  font-family: 'Kanit', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  color: #B8E8FF;
  text-shadow: 0 0 6px rgba(30, 144, 255, 0.5);
  transition: transform 0.25s ease, color 0.25s ease;
}

.gap-counter.gap-counter-bump {
  transform: scale(1.1);
  color: #6CC8FF;
}

.gap-label {
  font-family: 'Kanit', sans-serif;
  font-size: 0.4rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(184, 232, 255, 0.5);
  white-space: nowrap;
}

.gap-sublabel {
  font-family: 'Kanit', sans-serif;
  font-size: 0.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(108, 200, 255, 0.4);
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .navbar-globe-slot {
    display: none;
  }
}

@media (max-width: 1280px) {
  .gap-sublabel {
    display: none;
  }
}
