/* Inventory launch lock overlay */
.inv-lock-overlay {
  position: fixed;
  inset: 0;
  z-index: 99990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(232, 160, 32, 0.1), transparent 55%),
    rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(10px);
}
.inv-lock-card {
  width: min(440px, 100%);
  padding: 2rem 1.6rem 1.75rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 12, 12, 0.95);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  text-align: center;
}
.inv-lock-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 160, 32, 0.35);
  background: rgba(232, 160, 32, 0.1);
  color: #e8a020;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.inv-lock-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e8a020;
  box-shadow: 0 0 0 3px rgba(232, 160, 32, 0.2);
}
.inv-lock-card h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  letter-spacing: -0.03em;
  font-weight: 600;
  color: #f4f2ee;
}
.inv-lock-card p {
  margin: 0 0 1.35rem;
  color: #8f8b84;
  font-size: 0.98rem;
  line-height: 1.55;
}
.inv-lock-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}
.inv-lock-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  color: inherit;
}
.inv-lock-actions .primary {
  background: #e8a020;
  color: #12100c;
  border: 1px solid transparent;
}
.inv-lock-actions .ghost {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #8f8b84;
  background: transparent;
}
.inv-lock-actions .ghost:hover {
  color: #f4f2ee;
}
.inv-lock-fine {
  margin: 1.15rem 0 0 !important;
  font-size: 0.78rem !important;
  color: #5c5954 !important;
}
body.inv-is-locked {
  overflow: hidden;
}
body.inv-is-locked > *:not(.inv-lock-overlay):not(script):not(style) {
  /* keep lock visible; page underneath dimmed by overlay */
}
