/* Floating Discord link — welcome, tutorial, lobby */

.discord-fab {
  position: fixed;
  right: max(1.25rem, env(safe-area-inset-right, 0px));
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  z-index: 926;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #5865f2;
  color: #fff;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.45),
    0 0 20px rgba(88, 101, 242, 0.45);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.discord-fab:hover {
  background: #4752c4;
  transform: scale(1.06);
  box-shadow:
    0 6px 22px rgba(0, 0, 0, 0.5),
    0 0 28px rgba(88, 101, 242, 0.6);
}

.discord-fab:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.discord-fab-icon {
  width: 1.65rem;
  height: auto;
  display: block;
}
