/* Mise en évidence des retours vers le jeu sur les pages secondaires. */
.return-to-game {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid #d7ff43;
  border-radius: 6px;
  background: #d7ff43;
  box-shadow: 0 5px 0 #819a25, 0 0 22px rgba(215, 255, 67, .16);
  color: #100d22 !important;
  font-weight: 900;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}

.return-to-game:hover,
.return-to-game:focus-visible {
  color: #100d22 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 0 #819a25, 0 0 28px rgba(215, 255, 67, .24);
}

@media (max-width: 768px) {
  .profile-topbar {
    min-height: 72px;
  }

  .profile-topbar nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .return-to-game {
    min-width: auto !important;
    min-height: 38px;
    padding: 8px 10px;
    overflow: visible !important;
    font-size: 9px !important;
    white-space: nowrap;
  }

  .return-to-game::after {
    content: none !important;
  }
}
