.page-back-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  margin: 0 0 28px;
  text-align: left;
}
.page-back,
.game-topbar .game-back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 8px 0 0;
  border: 0;
  border-radius: 24px;
  background: transparent;
  color: #d8eaff;
  font:
    italic 700 17px/1.2 Barlow,
    system-ui,
    sans-serif;
  text-decoration: none;
  text-transform: none;
  box-shadow: none;
  cursor: pointer;
}
.page-back:hover,
.game-topbar .game-back-button:hover {
  background: transparent;
  color: #ffffff;
}
.page-back svg {
  display: block;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid #98cfff55;
  border-radius: 50%;
  background: #63b6ff1a;
  color: #d8efff;
  transition: background 150ms ease, border-color 150ms ease;
}
.page-back:hover svg {
  background: #63b6ff38;
  border-color: #a6dbffb3;
}
.page-back:disabled {
  opacity: 0.65;
  cursor: wait;
}
.page-back:focus-visible,
.page-back-secondary:focus-visible,
.game-topbar .game-back-button:focus-visible {
  outline: 3px solid #b6f960;
  outline-offset: 4px;
}
.page-back-secondary {
  min-height: 48px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #c5dbf3;
  font:
    italic 700 16px/1.2 Barlow,
    system-ui,
    sans-serif;
  cursor: pointer;
}
.page-back-secondary:hover {
  background: #63b6ff1a;
  color: #fff;
}
.game-topbar .game-back-button {
  min-width: 44px;
  min-height: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #98cfff55;
  background: #63b6ff1a;
}
.game-topbar .game-back-button:hover {
  background: #63b6ff38;
  border-color: #a6dbffb3;
}
@media (max-width: 600px) {
  .page-back-nav {
    margin-bottom: 22px;
    gap: 10px;
  }
  .page-back {
    min-height: 44px;
    font-size: 16px;
    gap: 10px;
  }
  .page-back-secondary {
    min-height: 44px;
    border-radius: 12px;
    padding: 0 12px;
    font-size: 15px;
  }
}
