/* ==========================================================================
   SCUM SESSION LOGOUT ("SALIR") · INTEGRATED HUD BUTTON
   ========================================================================== */

#btn-scum-logout {
  position: relative;
  background: rgba(22, 10, 14, 0.85);
  border: 1px solid rgba(255, 68, 85, 0.35);
  color: #f87171;
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  display: none; /* Oculto mientras está bloqueado */
  align-items: center;
  gap: 7px;
  transition: all 0.2s ease;
  user-select: none;
  white-space: nowrap;
  box-shadow: 0 0 10px rgba(255, 68, 85, 0.12);
}

#btn-scum-logout .logout-dot,
#btn-scum-logout::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #ff4455;
  border-radius: 50%;
  box-shadow: 0 0 8px #ff4455;
}

#btn-scum-logout:hover {
  background: rgba(255, 68, 85, 0.22);
  border-color: #ff4455;
  color: #ffffff;
  box-shadow: 0 0 16px rgba(255, 68, 85, 0.45);
  transform: translateY(-1px);
}

#btn-scum-logout:active {
  transform: translateY(1px);
}

/* Visible cuando la sesión está autenticada */
body.scum-authenticated #btn-scum-logout {
  display: inline-flex;
}

@media (max-width: 640px) {
  #btn-scum-logout {
    padding: 5px 9px;
    font-size: 10px;
    letter-spacing: 1px;
    gap: 5px;
  }
}
