/* Hub unlock ceremony — frosted overlay + hero slime */
.hub-unlock-ceremony {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 18, 32, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: auto;
}

.hub-unlock-ceremony[hidden] {
  display: none !important;
}

.hub-unlock-ceremony__stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 16px 24px 8px;
  max-width: min(92vw, 480px);
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.hub-unlock-ceremony__title {
  margin: 0;
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(12px, 3.6vw, 16px);
  line-height: 1.75;
  color: #fff8e8;
  text-align: center;
  text-shadow:
    0 2px 0 rgba(30, 20, 10, 0.85),
    0 0 12px rgba(0, 0, 0, 0.45);
}

.hub-unlock-ceremony__slime-wrap {
  position: relative;
  width: 152px;
  height: 168px;
  margin: 4px 0 8px;
}

.hub-unlock-ceremony__shadow {
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 96px;
  height: 22px;
  margin-left: -48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.32);
  transform-origin: center;
}

.hub-unlock-ceremony__slime {
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 128px;
  height: 128px;
  margin-left: -64px;
  transform-origin: center bottom;
}

.hub-unlock-ceremony__slime svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 4px 0 rgba(30, 20, 10, 0.35));
}

.hub-unlock-ceremony__btn {
  margin-top: 4px;
  min-width: 160px;
  padding: 12px 20px;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: #f5e6c8;
  background: linear-gradient(180deg, #7a9e4a 0%, #5a7a32 100%);
  border: 3px solid #3d2818;
  border-radius: 2px;
  box-shadow: 0 3px 0 #2a1a10;
  cursor: pointer;
  image-rendering: pixelated;
}

.hub-unlock-ceremony__btn:hover {
  filter: brightness(1.08);
}

.hub-unlock-ceremony__btn:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 #2a1a10;
}
