/* Shared hub-style shell for game boot pages */

.hub-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 0.4rem;
  background: rgba(10, 18, 30, 0.88);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #cbd5e1;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(125, 211, 252, 0.08);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}

.hub-back-link:hover {
  color: #e0f2fe;
  border-color: rgba(56, 189, 248, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(125, 211, 252, 0.14),
    0 0 12px rgba(56, 189, 248, 0.28);
}

#hubBackLink {
  text-align: center;
}

.hub-game-shell,
#game-container.hub-game-shell {
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 0.5rem;
  background: rgba(8, 14, 22, 0.82);
  backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(125, 211, 252, 0.1),
    0 10px 28px rgba(0, 0, 0, 0.48);
}

.hub-game-shell > header,
#game-container.hub-game-shell > header,
.hub-game-shell > .relics-header {
  margin: 0;
  padding: 0.85rem 1rem 0.65rem;
  border-bottom: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 0.5rem 0.5rem 0 0;
  background: rgba(12, 24, 38, 0.92);
}

.hub-game-shell #game-view,
#game-container.hub-game-shell #game-view {
  padding: 1rem 1.1rem 1.25rem;
}
