/* The single link from the minigame hub to /achievements.html. Its own file so
   minigames.css stays about the grid. Cursor uses the full site stack — a bare
   `cursor: pointer` would override the skeleton hand. */

.ach-hub-bar {
  display: flex;
  justify-content: center;
  margin: 18px 0 4px;
}

.ach-hub-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 26px;
  border: 1px solid #00cccc;
  border-radius: 999px;
  background: rgba(10, 22, 26, 0.92);
  color: #9fdede;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  cursor:
    url('/images/cursors/hover.cur') 11 0,
    url('/images/cursors/hover.png') 11 0,
    pointer;
}

.ach-hub-link:hover {
  color: #00ffff;
  border-color: #00ffff;
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.3);
}

.ach-hub-link:focus-visible {
  outline: 2px solid #00ffff;
  outline-offset: 3px;
}
